From fc2fc0de5d7050437f623f808ddff3488c895b72 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 21 Dec 2017 16:29:00 -0800 Subject: [PATCH] test: run chrome with --disable-dev-shm-usage (#1633) This might speedup tests on CI. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 7bf7c02e0b1..e91530c4e77 100644 --- a/test/test.js +++ b/test/test.js @@ -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;