You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple nodeunit test runner for invoking tests via node
Example code:
// if this module is the script being run, then run the tests:
if (module == require.main) {
var nodeunit_runner = require('nodeunit-runner');
nodeunit_runner.run(__filename);
}
About
A simple nodeunit test runner for invoking tests via node