From b80d36b1f3972784cf227be55654043c046d5c01 Mon Sep 17 00:00:00 2001 From: chaosrealm Date: Mon, 4 Nov 2024 12:29:35 -0800 Subject: [PATCH] Extend test hooks timeouts --- src/indexers/hosted/hosted-indexers.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/indexers/hosted/hosted-indexers.test.ts b/src/indexers/hosted/hosted-indexers.test.ts index f3a2849..3417a67 100644 --- a/src/indexers/hosted/hosted-indexers.test.ts +++ b/src/indexers/hosted/hosted-indexers.test.ts @@ -21,13 +21,13 @@ beforeEach(async () => { const catalogName = `catalog-${Date.now()}`; catalog = await testClient.configureCatalog(catalogName, config); -}, 20000); +}, 30000); afterEach(async () => { if (catalog) { await catalog.delete(); // this will also delete any indexer referencing this catalog } -}, 20000); +}, 30000); test("Test hosted indexer APIs", { timeout: 60000 }, async () => { const indexerName = `indexer-sdk-test-web-${Date.now()}`;