Skip to content

Commit

Permalink
fix: Remove hardcoded useIframe & captureConsole opts
Browse files Browse the repository at this point in the history
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
  • Loading branch information
gnail committed Jul 10, 2016
1 parent c7a27c2 commit 33386b3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tasks/grunt-karma.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ module.exports = function (grunt) {
if (options.client) {
// Merge karma default options
_.defaults(options.client, {
args: [],
useIframe: true,
captureConsole: true
args: []
})
}

Expand Down

0 comments on commit 33386b3

Please sign in to comment.