Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
Increase Karma time-outs aiming to prevents disconnects on BrowserStack
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Sep 27, 2019
1 parent b9a6562 commit 98a5897
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 @@ -107,7 +107,10 @@ module.exports = config => {
colors: true,
singleRun: false,

browserNoActivityTimeout: 60000,
// Increase time-outs to prevent disconnects on BrowserStack
captureTimeout: 300000,
browserNoActivityTimeout: 300000,
browserDisconnectTimeout: 300000,
browserDisconnectTolerance: 3
});
};

0 comments on commit 98a5897

Please sign in to comment.