Skip to content

Commit

Permalink
Extend test hooks timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosrealm committed Nov 4, 2024
1 parent ff02c27 commit b80d36b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/indexers/hosted/hosted-indexers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()}`;
Expand Down

0 comments on commit b80d36b

Please sign in to comment.