fix(Launcher): launch chrome with --disable-dev-shm-usage by default (#2351)

Fixes #1834.
This commit is contained in:
Andrey Lushnikov 2018-04-10 20:05:27 -07:00 committed by GitHub
parent 0b64242f85
commit 18f2ecdffd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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',

View File

@ -46,7 +46,7 @@ const defaultBrowserOptions = {
executablePath,
slowMo,
headless,
args: ['--no-sandbox', '--disable-dev-shm-usage']
args: ['--no-sandbox']
};
let parallel = 1;