Add --no-sandbox flag
Some checks failed
continuous-integration/drone the build failed

This commit is contained in:
Manuel Friedli 2018-09-01 05:30:13 +02:00
parent bf27baa7f5
commit a8ddf4ce38
3 changed files with 8 additions and 1 deletions

View file

@ -29,6 +29,12 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['ChromeHeadless'],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
}
},
singleRun: false
});
};