Skip to content
This repository has been archived by the owner on Oct 21, 2021. It is now read-only.

Commit

Permalink
Try --no-sandbox to see if it fixes CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Mar 9, 2018
1 parent 53be804 commit 281a602
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/karma.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ module.exports = function(config) {
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
browsers: ['ChromeHeadless', 'FirefoxHeadless'],
browsers: ['ChromeHeadlessNoSandbox', 'FirefoxHeadless'],
autoWatch: false,
singleRun: true,
concurrency: Infinity,
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
},
FirefoxHeadless: {
base: 'Firefox',
flags: ['-headless'],
Expand Down

0 comments on commit 281a602

Please sign in to comment.