mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
14 lines
241 B
JavaScript
Executable File
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');
|