From 4ade2ad6ab6d5306ba236457f0373122cc4b8fef Mon Sep 17 00:00:00 2001 From: PhilWindle <60546371+PhilWindle@users.noreply.github.com> Date: Wed, 11 Dec 2024 21:26:06 +0000 Subject: [PATCH] chore: Increase test timeout to reduce flakes (#10641) Please read [contributing guidelines](CONTRIBUTING.md) and remove this line. --- yarn-project/world-state/src/test/integration.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/world-state/src/test/integration.test.ts b/yarn-project/world-state/src/test/integration.test.ts index 9a3d5d0d7ed..49bc37d0e3e 100644 --- a/yarn-project/world-state/src/test/integration.test.ts +++ b/yarn-project/world-state/src/test/integration.test.ts @@ -62,7 +62,7 @@ describe('world-state integration', () => { await db.close(); }); - const awaitSync = async (blockToSyncTo: number, finalized?: number, maxTimeoutMS = 5000) => { + const awaitSync = async (blockToSyncTo: number, finalized?: number, maxTimeoutMS = 30000) => { const startTime = Date.now(); let sleepTime = 0; let tips = await synchronizer.getL2Tips();