We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2d98ee commit eec1713Copy full SHA for eec1713
tasks/javascript.js
@@ -115,7 +115,8 @@ gulp.task('javascript:lint', function () {
115
gulp.task('javascript:unit', function () {
116
var reporters = [].concat(cliArgs.karmareporter)
117
.filter(function isString(value) {
118
- return (typeof value === 'string');
+ // TODO @bguiz remove the second operand when you extract the reporter
119
+ return (typeof value === 'string') && (value !== karma.yargsOption.value.default);
120
});
121
return combined.create()
122
.append(
0 commit comments