Skip to content

Commit

Permalink
Fixes karma-runner#217: Disable IPC flooding protection.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander J. Vincent committed May 17, 2020
1 parent 5f70a76 commit d05cda0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.js
Expand Up @@ -33,6 +33,7 @@ var ChromeBrowser = function (baseBrowserDecorator, args) {
})

return [
'--disable-ipc-flooding-protection',
'--user-data-dir=' + userDataDir,
// https://github.com/GoogleChrome/chrome-launcher/blob/master/docs/chrome-flags-for-tools.md#--enable-automation
'--enable-automation',
Expand Down Expand Up @@ -89,6 +90,7 @@ var ChromiumBrowser = function (baseBrowserDecorator, args) {
})

return [
'--disable-ipc-flooding-protection',
'--user-data-dir=' + userDataDir,
'--no-default-browser-check',
'--no-first-run',
Expand Down

0 comments on commit d05cda0

Please sign in to comment.