Skip to content

Commit

Permalink
fix(Launcher): launch chrome with --disable-dev-shm-usage by default (#…
Browse files Browse the repository at this point in the history
…2351)

Fixes #1834.
  • Loading branch information
aslushnikov committed Apr 11, 2018
1 parent 0b64242 commit 18f2ecd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/Launcher.js
Expand Up @@ -35,6 +35,7 @@ const DEFAULT_ARGS = [
'--disable-background-timer-throttling',
'--disable-client-side-phishing-detection',
'--disable-default-apps',
'--disable-dev-shm-usage',
'--disable-extensions',
'--disable-hang-monitor',
'--disable-popup-blocking',
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Expand Up @@ -46,7 +46,7 @@ const defaultBrowserOptions = {
executablePath,
slowMo,
headless,
args: ['--no-sandbox', '--disable-dev-shm-usage']
args: ['--no-sandbox']
};

let parallel = 1;
Expand Down

0 comments on commit 18f2ecd

Please sign in to comment.