all though if you want to step through your test, you can do something like:
=======================================
'use strict';
var Mocha = require('mocha');
var options = {
ui: 'bdd',
timeout: 10000
};
var mocha = new Mocha(options);
mocha.files = ['./spec/someunittest.js'];
mocha.run();
======================
I'm still a total noob, so I am sure there is a better way to do this
↧