chore(test): add missing custom Chrome headless launcher

This commit is contained in:
Nico Rehwaldt 2017-11-23 10:46:29 +01:00
parent 3908ac64c5
commit a6b26b0b59

View File

@ -49,6 +49,17 @@ module.exports = function(karma) {
reporters: [ 'spec' ],
customLaunchers: {
ChromeHeadless_Linux: {
base: 'ChromeHeadless',
flags: [
'--no-sandbox',
'--disable-setuid-sandbox'
],
debug: true
}
},
browsers: browsers,
browserNoActivityTimeout: 30000,