Skip to content

Commit cd243fe

Browse files
fix: karma gulp script
1 parent a09ef4f commit cd243fe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gulpfile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ gulp.task('karma', function(done) {
88
configFile: __dirname + '/karma.conf.js',
99
singleRun: true,
1010
browsers: ['Firefox', 'Chrome']
11-
}, done);
11+
}, function() {
12+
done();
13+
});
1214
});
1315

1416
gulp.task('build-files', function() {

0 commit comments

Comments
 (0)