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 Misko Hevery
parent 2a3de802a0
commit bde2b4425c
6 changed files with 26 additions and 20 deletions

View File

@ -30,8 +30,14 @@ module.exports = function (config) {
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ['CustomChrome'],
browserNoActivityTimeout: 60000,
singleRun: false
singleRun: false,
customLaunchers: {
CustomChrome: {
base: 'Chrome',
flags: process.env.TRAVIS && ['--no-sandbox']
}
}
});
};