Skip to content

Commit

Permalink
fix: use no-sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
1ambda committed Jul 11, 2017
1 parent 0662f92 commit 20a8cfd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions zeppelin-web/protractor.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var baseConfig = {
capabilities: {
browserName: 'chrome',
},
allScriptsTimeout: 110000,
allScriptsTimeout: 300000, // 5 min

framework: 'jasmine',
specs: ['e2e/**/*.js'],
Expand All @@ -14,7 +14,7 @@ var baseConfig = {
showColors: true,
isVerbose: true,
includeStackTrace: false,
defaultTimeoutInterval: 400000,
defaultTimeoutInterval: 300000, // 5 min
print: function() {}, // remove protractor dot reporter, we are using jasmine-spec-reporter
},

Expand All @@ -36,7 +36,8 @@ var baseConfig = {

if (process.env.TRAVIS) {
baseConfig.capabilities.chromeOptions = {
binary: process.env.CHROME_BIN
binary: process.env.CHROME_BIN,
args: ['--no-sandbox'],
};
}

Expand Down

0 comments on commit 20a8cfd

Please sign in to comment.