apeman-tmpl-contrib-official
Version:
Template for official apeman modules
24 lines (17 loc) • 374 B
JavaScript
/**
* @file Test this project.
*/
;
var runNodeunit = require('apeman-dev-commons-testing/lib/run_nodeunit'),
path = require('path');
var basedir = path.resolve(__dirname, '..');
process.chdir(basedir);
runNodeunit([
'*_test.js',
'test/*_test.js',
'test/**/*_test.js'
], {
reporter: 'default'
}, function () {
});