mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 02:37:25 -04:00
18 lines
456 B
JavaScript
18 lines
456 B
JavaScript
|
// test/mocha/node-suite.js
|
||
|
|
||
|
// This runs with mocha programmatically rather than from the command line.
|
||
|
// how-to-with-comments taken from https://github.com/itaylor/qunit-mocha-ui
|
||
|
|
||
|
//Load mocha
|
||
|
var Mocha = require("mocha");
|
||
|
|
||
|
//Tell mocha to use the interface.
|
||
|
var mocha = new Mocha({ui:"qunit", reporter:"spec"});
|
||
|
|
||
|
//Add your test files
|
||
|
mocha.addFile("./test/mocha/suite.js");
|
||
|
|
||
|
//Run your tests
|
||
|
mocha.run(function(failures){
|
||
|
process.exit(failures);
|
||
|
});
|