apeman-tmpl-contrib-official
Version:
Template for official apeman modules
24 lines (18 loc) • 406 B
JavaScript
/**
* Run tests.
*/
;
process.chdir(__dirname + '/..');
var apeTesting = require('ape-testing'),
apeTasking = require('ape-tasking');
apeTasking.runTasks('test', [
function (callback) {
apeTesting.runNodeunit([
'*_test.js',
'test/**/*_test.js'
], {
reporter: 'default'
}, callback);
}
], true);