From f253f15a5b3215e8d1a37d923714dc1a46a4557a Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Thu, 14 Jun 2018 18:21:42 -0400 Subject: [PATCH] Always use --no-sandbox :rage: --- testem.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/testem.js b/testem.js index 03211fc..19a2ffa 100644 --- a/testem.js +++ b/testem.js @@ -2,13 +2,11 @@ const report_file = process.env.BUILD_STAGINGDIRECTORY ? process.env.BUILD_STAGINGDIRECTORY + '/test-results/results.xml' : 'test-results.xml'; -const NO_SANDBOX = process.env.TRAVIS || process.env.TS_BUILD; - const CHROME_ARGS = { mode: 'ci', args: [ // --no-sandbox is needed when running Chrome inside a container - NO_SANDBOX && '--no-sandbox', + '--no-sandbox', '--disable-gpu', '--headless', '--remote-debugging-port=0',