Skip to content

Commit

Permalink
Increase celo devnet test timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
jcortejoso committed Dec 18, 2024
1 parent 546c508 commit 380a18f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions op-e2e/celo/tests/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ export async function setup() {
config.addresses = contractAddrs

const success = await Promise.all([
waitReachable(config.client.l1.public, 10_000),
waitReachable(config.client.l2.public, 10_000),
waitForNextGame(config.client.l1.public, chainConfig.l2, 60_000),
waitReachable(config.client.l1.public, 60_000),
waitReachable(config.client.l2.public, 60_000),
waitForNextGame(config.client.l1.public, chainConfig.l2, 300_000),
])
if (success.every((v) => v == true)) {
return config
Expand Down

0 comments on commit 380a18f

Please sign in to comment.