From 3cc2779fd3f0a33bec7438034e6ecffd6a2d8aad Mon Sep 17 00:00:00 2001 From: LHerskind Date: Wed, 27 Nov 2024 09:54:15 +0000 Subject: [PATCH] chore: crank up that timeout --- 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 68a6bc4b225..07ac55f47ab 100644 --- a/yarn-project/world-state/src/test/integration.test.ts +++ b/yarn-project/world-state/src/test/integration.test.ts @@ -61,7 +61,7 @@ describe('world-state integration', () => { await db.close(); }); - const awaitSync = async (blockToSyncTo: number, finalized?: number, maxTimeoutMS = 2000) => { + const awaitSync = async (blockToSyncTo: number, finalized?: number, maxTimeoutMS = 5000) => { const startTime = Date.now(); let sleepTime = 0; let tips = await synchronizer.getL2Tips();