Skip to content

Commit

Permalink
Insane timeouts for insanely slow actions (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurkle committed Apr 14, 2021
1 parent 489a15d commit cfb3526
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ module.exports = function(karma) {
// These settings deal with browser disconnects. We had seen test flakiness from Firefox
// [Firefox 56.0.0 (Linux 0.0.0)]: Disconnected (1 times), because no message in 10000 ms.
// https://github.com/jasmine/jasmine/issues/1327#issuecomment-332939551
browserDisconnectTolerance: 3
captureTimeout: 120000,
browserDisconnectTimeout: 120000,
browserDisconnectTolerance: 3,
browserNoActivityTimeout: 120000,
});

if (env === 'test') {
Expand Down

0 comments on commit cfb3526

Please sign in to comment.