diff --git a/gulpfile.js b/gulpfile.js index bf4329ba2..ff8b64d61 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -89,7 +89,7 @@ gulp.task('pretest', ['src', 'tests', 'wipe-extras']) gulp.task('test', ['pretest'], function () { return gulp.src('tests/lib/**/*.js', { read: false }) - .pipe(mocha({ reporter: 'dot', grep: process.env.TEST_GREP })) + .pipe(mocha({ reporter: 'spec', grep: process.env.TEST_GREP })) // NODE_PATH=./lib mocha --recursive --reporter dot tests/lib/ })