support for healdess chrome (#1939)

This commit is contained in:
Denys Vuika
2017-06-06 15:44:06 +01:00
committed by Eugenio Romano
parent 7289315c37
commit 0599f1a441

View File

@@ -68,12 +68,21 @@ module.exports = function (config) {
browserDisconnectTolerance: 10, browserDisconnectTolerance: 10,
browserNoActivityTimeout: 3000000, browserNoActivityTimeout: 3000000,
browsers: ['Chrome'], browsers: ['Chrome_headless'],
customLaunchers: { customLaunchers: {
Chrome_travis_ci: { Chrome_travis_ci: {
base: 'Chrome', base: 'Chrome',
flags: ['--no-sandbox'] flags: ['--no-sandbox']
},
Chrome_headless: {
base: 'Chrome',
flags: [
'--no-sandbox',
'--headless',
'--disable-gpu',
'--remote-debugging-port=9222'
]
} }
}, },