I am currently using Nitrous, which shouldn\'t matter, but I needed to install mocha so I typed in:
npm install - g mocha.
Everything insta
By default, mocha includes ./test/*.js. So if that is where your tests live, just running mocha is all you need.
./test/*.js
mocha
If you have your tests in test/unit, you might want to run mocha ./test/unit/*.js.
test/unit
mocha ./test/unit/*.js