Skip to content

Commit dcf038a

Browse files
committedJan 11, 2025··
test: bump timeout in test also
1 parent 68b889a commit dcf038a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ await setup({
1010
})
1111

1212
describe('browser', () => {
13-
it('runs a test', async () => {
13+
it('runs a test', { timeout: 20000 }, async () => {
1414
const page = await createPage('/')
1515
const text = await page.getByRole('heading', { name: 'Welcome to Nuxt!' }).textContent()
1616
expect(text).toContain('Welcome to Nuxt!')

0 commit comments

Comments
 (0)
Please sign in to comment.