Skip to content

Commit eec1713

Browse files
author
benholloway
committed
minor fix
1 parent c2d98ee commit eec1713

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tasks/javascript.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ gulp.task('javascript:lint', function () {
115115
gulp.task('javascript:unit', function () {
116116
var reporters = [].concat(cliArgs.karmareporter)
117117
.filter(function isString(value) {
118-
return (typeof value === 'string');
118+
// TODO @bguiz remove the second operand when you extract the reporter
119+
return (typeof value === 'string') && (value !== karma.yargsOption.value.default);
119120
});
120121
return combined.create()
121122
.append(

0 commit comments

Comments
 (0)