mocha opts
This commit is contained in:
parent
cfee2a9175
commit
47c57f00bb
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ gulp.task('compile', ['clean'], compile);
|
||||||
gulp.task('just-compile', compile);
|
gulp.task('just-compile', compile);
|
||||||
|
|
||||||
function test(cb) {
|
function test(cb) {
|
||||||
const child = cp.spawn('mocha', [], { stdio: 'inherit' });
|
const child = cp.spawn('mocha', ['--reporter=dot'], { stdio: 'inherit' });
|
||||||
child.on('exit', () => cb());
|
child.on('exit', () => cb());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
--reporter=dot --require source-map-support/register out/test
|
--require source-map-support/register out/test
|
Loading…
Add table
Reference in a new issue