Run Travis using headless Chrome addon

This commit is contained in:
courtneypattison
2017-11-28 15:33:35 -08:00
parent 821e9165aa
commit 909845ebc0
4 changed files with 8 additions and 24 deletions

View File

@@ -146,11 +146,6 @@ module.exports = function (config) {
],
customLaunchers: {
// Continuous integraation with Chrome - launcher
'ChromeTravisCi': {
base: 'Chrome',
flags: ['--no-sandbox']
},
// Remote Selenium Server with Chrome - launcher
'SeleniumChrome': {
base: 'WebDriver',
@@ -173,9 +168,5 @@ module.exports = function (config) {
};
if (process.env.TRAVIS) {
configuration.browsers = ['ChromeTravisCi'];
}
config.set(configuration);
};