DEV Community

Discussion on: My Node.js Setup (Mocha & Chai, Babel7, ES6)

Collapse
 
multiplaie profile image
Remy Jacquand • Edited

Hey norbert,

thank you for this post !

i have just one thing to correct:

in the test script

"test": "./node_modules/.bin/mocha --compilers js:@babel/register"
Enter fullscreen mode Exit fullscreen mode

--compilers is now deprecated

you can fix this with

"test": "./node_modules/.bin/mocha --require @babel/register"
Enter fullscreen mode Exit fullscreen mode

peace


source: github.com/mochajs/mocha/wiki/comp...