Skip to content

Commit 3225562

Browse files
committedDec 3, 2024··
fix(core): bump teardown timeout for jest
1 parent 00f409c commit 3225562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/setup/jest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ export default async function setupJest(hooks: TestHooks) {
88
test('setup', hooks.setup, hooks.ctx.options.setupTimeout)
99
beforeEach(hooks.beforeEach)
1010
afterEach(hooks.afterEach)
11-
afterAll(hooks.afterAll)
11+
afterAll(hooks.afterAll, 20000)
1212
}

0 commit comments

Comments
 (0)
Please sign in to comment.