X Tutup
Skip to content

Commit 27daeaf

Browse files
Alexander Bachmannalexeagle
authored andcommitted
fix(karma): fix running karma via gulp
As described below, the karma server showdown process can crash, if the done() function, provided by gulp is referenced directly instead of wrapped in a closure function http://stackoverflow.com/questions/26614738/issue-running-karma-task-from-gulp Reformat the gulpfile.js Squashing the two commits
1 parent 3e9b532 commit 27daeaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ gulp.task('test.unit.js/ci', function(done) {
826826
reporters: ['dots'],
827827
browsers: browserConf.browsersToRun
828828
},
829-
done)
829+
function(err) { done(); })
830830
.start();
831831
});
832832

0 commit comments

Comments
 (0)
X Tutup