Skip to content

Commit 73e2c71

Browse files
committedJul 1, 2024··
test: bump timeout in windows browser spec
1 parent 16827f7 commit 73e2c71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ describe('browser', () => {
1212
const text = await page.getByRole('heading', { name: 'Welcome to Nuxt!' }).textContent()
1313
expect(text).toContain('Welcome to Nuxt!')
1414
await page.close()
15-
})
15+
}, 10000)
1616
})

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ describe('browser', () => {
1313
const text = await page.getByRole('heading', { name: 'Welcome to Nuxt!' }).textContent()
1414
expect(text).toContain('Welcome to Nuxt!')
1515
await page.close()
16-
})
16+
}, 10000)
1717
})

0 commit comments

Comments
 (0)
Please sign in to comment.