test: run chrome with --disable-dev-shm-usage (#1633)

This might speedup tests on CI.
This commit is contained in:
Andrey Lushnikov 2017-12-21 16:29:00 -08:00 committed by GitHub
parent b2389b0734
commit fc2fc0de5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ const defaultBrowserOptions = {
executablePath,
slowMo,
headless,
args: ['--no-sandbox']
args: ['--no-sandbox', '--disable-dev-shm-usage']
};
const timeout = slowMo ? 0 : 10 * 1000;