Node Mocha Expect set up - Matus-Dubrava/Node-Mocha-Expect-testing GitHub Wiki
install mocha
using npm init mocha --save-dev
install expect
using npm install [email protected] --save-dev
modify test
property inside of package.json
e.g. "test": "mocha **/*test.js"
run test using npm test
for automatic testing using nodemon
nodemon --exec 'npm test'
or, add
"test-watch": "nodemon --exec 'npm test'"
to scripts
property inside of package.json
and issue
npm run test-watch