Skip to content

Commit 1acb335

Browse files
committedJan 11, 2025··
test: update windows timeout for e2e test
1 parent 4b22d22 commit 1acb335

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎examples/app-vitest/test/browser.e2e.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { isWindows } from 'std-env'
66
await setup({
77
rootDir: fileURLToPath(new URL('../', import.meta.url)),
88
browser: true,
9+
setupTimeout: isWindows ? 120000 : 10000,
910
})
1011

1112
describe('browser', () => {
@@ -14,5 +15,5 @@ describe('browser', () => {
1415
const text = await page.getByRole('heading', { name: 'Welcome to Nuxt!' }).textContent()
1516
expect(text).toContain('Welcome to Nuxt!')
1617
await page.close()
17-
}, isWindows ? 120000 : 10000)
18+
})
1819
})

0 commit comments

Comments
 (0)
Please sign in to comment.