Skip to content

Commit 80e4d3f

Browse files
authored
build: increase timeout for legacy saucelabs tests (#20029)
We keep adding more tests to our codebase, but browsers on Saucelabs generally run slow. During the last couple of weeks unit tests on Saucelabs sometimes failed due to the default 10min timeout. e.g. https://app.saucelabs.com/tests/bfb7ade4b0fc4e7e9ff7237074baac80 We bump the timeout so that tests can complete without us relaunching another instance of a browser (which might pass; but will increase CI duration even more). We use the maximum value of 1000seconds. Ideally we'll fix this in the future by having incremental test runs. I'm working on this with a Bazel setup as a side project. See: #19409
1 parent 5026981 commit 80e4d3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ module.exports = config => {
9090
startConnect: false,
9191
recordVideo: false,
9292
recordScreenshots: false,
93-
idleTimeout: 600,
93+
idleTimeout: 1000,
9494
commandTimeout: 600,
9595
maxDuration: 5400,
9696
},

0 commit comments

Comments
 (0)