Skip to content

Commit d07d649

Browse files
committed
Default to using dots reporter
1 parent 2440b0d commit d07d649

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

gulpfile.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ gulp.task('test:unit', function (done) {
9696
karma.start({
9797
configFile: __dirname + '/karma.conf.js',
9898
singleRun: true,
99-
autoWatch: false,
100-
reporters: ['dots']
99+
autoWatch: false
101100
}, done);
102101
});
103102

@@ -106,8 +105,7 @@ gulp.task('test:unit:tdd', function (done) {
106105
karma.start({
107106
configFile: __dirname + '/karma.conf.js',
108107
singleRun: false,
109-
autoWatch: true,
110-
reporters: ['dots']
108+
autoWatch: true
111109
}, done);
112110
});
113111

0 commit comments

Comments
 (0)