summaryrefslogtreecommitdiffstats
path: root/test/index.js
blob: 2cfadb1a2c8e113ce593a5560d3bd4402bcd6096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * Mocha test runner.
 */
var Mocha = require('mocha');
var path = require('path');
 
// Create our mocha instance.
var mocha = new Mocha;
 
// Add all the test files.
mocha.addFile(path.join(__dirname, 'test.js'));
 
// Run the tests.
mocha.run(function(failures){
  process.on('exit', function () {
    process.exit(failures);
  });
});