From d07d6497c073d6f3139d08938d68b4e8ad626d73 Mon Sep 17 00:00:00 2001 From: Trey Hunner Date: Tue, 17 Feb 2015 14:00:27 -0800 Subject: [PATCH] Default to using dots reporter --- gulpfile.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 0b30b6d..e6ec277 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -96,8 +96,7 @@ gulp.task('test:unit', function (done) { karma.start({ configFile: __dirname + '/karma.conf.js', singleRun: true, - autoWatch: false, - reporters: ['dots'] + autoWatch: false }, done); }); @@ -106,8 +105,7 @@ gulp.task('test:unit:tdd', function (done) { karma.start({ configFile: __dirname + '/karma.conf.js', singleRun: false, - autoWatch: true, - reporters: ['dots'] + autoWatch: true }, done); });