From ac6c1a9eba692f9460e81b3bbb1401fd57a0e686 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Wed, 27 Nov 2024 09:39:39 -0300 Subject: [PATCH] chore: Bump timeout for after-hook for data store test again As the CI gets progressively slower, time for another timeout bump (first round was on #6364). Note that this test suite runs in 80s in CI but in 4s locally. --- yarn-project/p2p/src/service/data_store.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/p2p/src/service/data_store.test.ts b/yarn-project/p2p/src/service/data_store.test.ts index f46ecf32525..3b7620f0b59 100644 --- a/yarn-project/p2p/src/service/data_store.test.ts +++ b/yarn-project/p2p/src/service/data_store.test.ts @@ -17,7 +17,7 @@ import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string'; import { AztecDatastore } from './data_store.js'; -const CLEANUP_TIMEOUT = 30_000; +const CLEANUP_TIMEOUT = 60_000; describe('AztecDatastore with AztecLmdbStore', () => { let datastore: AztecDatastore;