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 5b5b4ae commit 6bfc170Copy full SHA for 6bfc170
index.js
@@ -40,6 +40,10 @@ var ChromeBrowser = function (baseBrowserDecorator, args) {
40
'--disable-popup-blocking',
41
'--disable-translate',
42
'--disable-background-timer-throttling',
43
+ // on macOS, disable-background-timer-throttling is not enough
44
+ // and we need disable-renderer-backgrounding too
45
+ // see https://github.com/karma-runner/karma-chrome-launcher/issues/123
46
+ '--disable-renderer-backgrounding',
47
'--disable-device-discovery-notifications'
48
].concat(flags, [url])
49
}
0 commit comments