Mocha JavaScript test framework
http://stackoverflow.com/questions/10832031/how-to-run-a-single-test-with-mocha#10833633 http://jaketrent.com/post/run-single-mocha-test
npx mocha --compilers mocha --grep "name of your test" path/to/test.js
npx mocha --compilers mocha --compilers coffee:coffee-script/register path/to/test.coffee
All test up to 1 minute
npx mocha --compilers mocha --timeout 60000 path/to/test.js
Run single test and wait up to 10 minute
it('Your test description', function() {
this.timeout(600000);
return assert.equal(2, 2);
});