Add --no-sandbox flag to Karma test
This commit is contained in:
parent
c168413a8e
commit
45931dc856
2 changed files with 8 additions and 2 deletions
|
@ -58,7 +58,13 @@ module.exports = function(config) {
|
|||
colors: true,
|
||||
logLevel: config.LOG_INFO,
|
||||
autoWatch: true,
|
||||
browsers: ['ChromeHeadless'],
|
||||
browsers: ['ChromeNoSandbox'],
|
||||
customLaunchers: {
|
||||
ChromeNoSandbox: {
|
||||
base: 'ChromeHeadless',
|
||||
flags: ['--no-sandbox']
|
||||
}
|
||||
},
|
||||
singleRun: false,
|
||||
concurrency: Infinity,
|
||||
mime: {
|
||||
|
|
Reference in a new issue