Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase captureTimeout and browserSocketTimeout #7856

Merged
merged 1 commit into from
Dec 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Increase captureTimeout and browserSocketTimeout
  • Loading branch information
Falke-Design committed Dec 10, 2021
commit 6d7bc823ecc8ddf73282b5be6c2cfd8441876d0a
5 changes: 4 additions & 1 deletion spec/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ module.exports = function (config) {
concurrency: 1,

// If browser does not capture in given timeout [ms], kill it
captureTimeout: 10000,
captureTimeout: 60000,

// Timeout for the client socket connection [ms].
browserSocketTimeout: 30000,

// Continuous Integration mode
// if true, it capture browsers, run tests and exit
Expand Down