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