travis setup

This commit is contained in:
Denys Vuika
2017-10-18 18:00:00 +01:00
parent 9c382ff0ac
commit b11a926a93
2 changed files with 31 additions and 1 deletions

View File

@@ -28,6 +28,17 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
customLaunchers: {
ChromeNoSandbox: {
base: 'Chrome',
flags: ['--no-sandbox']
}
},
singleRun: false,
captureTimeout: 180000,
browserDisconnectTimeout: 180000,
browserDisconnectTolerance: 3,
browserNoActivityTimeout: 300000
});
};