From 555dd93ed948aceb47aed3fd3ce4212fc73e87e8 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Mon, 11 May 2015 12:14:45 -0700 Subject: [PATCH] chore: change gulp test.unit.js to use dots reporter --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 20be46d8a8..6a2fc15e85 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -390,7 +390,7 @@ gulp.task('watch.js.dev', ['build.js.dev'], function (neverDone) { gulp.task('!test.unit.js/karma-server', function() { - karma.server.start({configFile: __dirname + '/karma-js.conf.js'}); + karma.server.start({configFile: __dirname + '/karma-js.conf.js', reporters: 'dots'}); }); @@ -429,7 +429,7 @@ gulp.task('!test.unit.dart/karma-run', function (done) { gulp.task('!test.unit.dart/karma-server', function() { - karma.server.start({configFile: __dirname + '/karma-dart.conf.js'}); + karma.server.start({configFile: __dirname + '/karma-dart.conf.js', reporters: 'dots'}); });