Skip to content

Commit 33386b3

Browse files
committed
fix: Remove hardcoded useIframe & captureConsole opts
These default options will override karma.conf.js even if they're explicitly set to false in there. This was kinda pointless anyway since Karma defaults these options to true anyway if they are not set. Closes #165, #166
1 parent c7a27c2 commit 33386b3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tasks/grunt-karma.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ module.exports = function (grunt) {
4949
if (options.client) {
5050
// Merge karma default options
5151
_.defaults(options.client, {
52-
args: [],
53-
useIframe: true,
54-
captureConsole: true
52+
args: []
5553
})
5654
}
5755

0 commit comments

Comments
 (0)