ci: use sudo: false on Travis (#21641)

Related to #21422.

PR Close #21641
This commit is contained in:
George Kalpakas
2018-01-18 20:58:40 +02:00
committed by Miško Hevery
parent b2e902deb4
commit 8e8924ac7c
6 changed files with 26 additions and 20 deletions

View File

@ -23,7 +23,8 @@ exports.config = {
'browserName': 'chrome',
// For Travis
chromeOptions: {
binary: process.env.CHROME_BIN
binary: process.env.CHROME_BIN,
args: ['--no-sandbox']
}
},