Skip to content

Commit

Permalink
fix(core): bump teardown timeout for jest
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Dec 3, 2024
1 parent 00f409c commit 3225562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/setup/jest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export default async function setupJest(hooks: TestHooks) {
test('setup', hooks.setup, hooks.ctx.options.setupTimeout)
beforeEach(hooks.beforeEach)
afterEach(hooks.afterEach)
afterAll(hooks.afterAll)
afterAll(hooks.afterAll, 20000)
}

0 comments on commit 3225562

Please sign in to comment.