From b458edace818bedc9f18ab5cf4f6687192f6e8c7 Mon Sep 17 00:00:00 2001 From: ludamad Date: Tue, 19 Sep 2023 10:08:02 +0100 Subject: [PATCH] fix: bump e2e_sandbox_example.test.ts timeout --- yarn-project/end-to-end/src/e2e_sandbox_example.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/end-to-end/src/e2e_sandbox_example.test.ts b/yarn-project/end-to-end/src/e2e_sandbox_example.test.ts index e2258de2ca8..7d6ec17d9a0 100644 --- a/yarn-project/end-to-end/src/e2e_sandbox_example.test.ts +++ b/yarn-project/end-to-end/src/e2e_sandbox_example.test.ts @@ -167,5 +167,5 @@ describe('e2e_sandbox_example', () => { expect(aliceBalance).toBe(initialSupply - transferQuantity); expect(bobBalance).toBe(transferQuantity + mintQuantity); - }, 60_000); + }, 120_000); });