Skip to content

Commit 9f1f712

Browse files
committed
fix(e2e): bump windows teardown timeout to 60s
1 parent 08e7826 commit 9f1f712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/e2e/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function createTestContext(options: Partial<TestOptions>): TestContext {
1313
fixture: 'fixture',
1414
configFile: 'nuxt.config',
1515
setupTimeout: isWindows ? 240_000 : 120_000,
16-
teardownTimeout: 30_000,
16+
teardownTimeout: isWindows ? 60_000 : 30_000,
1717
dev: !!JSON.parse(process.env.NUXT_TEST_DEV || 'false'),
1818
logLevel: 1,
1919
server: true,

0 commit comments

Comments
 (0)