Skip to content

Commit

Permalink
FIX karma timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
pubkey committed Apr 11, 2023
1 parent 512577f commit 2646235
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions config/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ const configuration = {
client: {
mocha: {
bail: true,
timeout: 12000
/**
* Yes we need a really big value here
* because the CI servers have a non-predictable
* computation power and sometimes they can be really slow.
*/
timeout: 120000
},
/**
* Pass all env variables here,
Expand All @@ -89,8 +94,8 @@ const configuration = {
*/
env: process.env
},
browserDisconnectTimeout: 12000,
processKillTimeout: 12000,
browserDisconnectTimeout: 120000,
processKillTimeout: 120000,
singleRun: true,


Expand Down

0 comments on commit 2646235

Please sign in to comment.