diff --git a/gulpfile.js b/gulpfile.js index dbf55ae..9091f3b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -47,7 +47,7 @@ gulp.task('compile', ['clean'], compile); gulp.task('just-compile', compile); function test(cb) { - const child = cp.spawn('mocha', [], { stdio: 'inherit' }); + const child = cp.spawn('mocha', ['--reporter=dot'], { stdio: 'inherit' }); child.on('exit', () => cb()); } diff --git a/test/mocha.opts b/test/mocha.opts index eb5a7c5..957f28e 100644 --- a/test/mocha.opts +++ b/test/mocha.opts @@ -1 +1 @@ ---reporter=dot --require source-map-support/register out/test \ No newline at end of file +--require source-map-support/register out/test \ No newline at end of file