Skip to content

Commit

Permalink
Increase the integration test timeout to 5 minutes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanknowles committed Jul 10, 2020
1 parent cd5223a commit 184fd1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/core-integration/src/Test/Integration/Framework/DSL.hs
Expand Up @@ -610,10 +610,10 @@ eventuallyUsingDelay
-> IO a
-> IO a
eventuallyUsingDelay delay desc io = do
winner <- race (threadDelay $ 180 * oneSecond) trial
winner <- race (threadDelay $ 300 * oneSecond) trial
case winner of
Left _ -> fail
("waited more than 3min for action to eventually resolve.\
("Waited longer than 5 minutes for action to resolve.\
\ Action: " ++ show desc)
Right a ->
return a
Expand Down

0 comments on commit 184fd1d

Please sign in to comment.