Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
Workaround for travis-ci chrome sandbox bug
Browse files Browse the repository at this point in the history
Do what is suggested here:
travis-ci/travis-ci#8836
  • Loading branch information
Enselic committed Jan 18, 2018
1 parent c4974de commit ca1b2de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion end-to-end-tests/lib/index.js
Expand Up @@ -48,7 +48,7 @@ function buildDriver(browser) {
let chromeOptions = new ChromeOptions();
let args = [`window-size=${windowSize}`];
if (HEADLESS) {
args = args.concat(['headless', 'disable-gpu']);
args = args.concat(['headless', 'disable-gpu', 'no-sandbox']);
}
chromeOptions.addArguments(...args);

Expand Down

0 comments on commit ca1b2de

Please sign in to comment.