2019-05-14 15:42:10 +02:00

14 lines
241 B
JavaScript
Executable File

#!/usr/bin/env node
'use strict';
process.on('unhandledRejection', err => {
throw err;
});
if (process.argv.length <= 2) {
process.argv.push('--require=sinon-bluebird', '!(node_modules)/**/*.test.js');
}
require('mocha/bin/_mocha');