Skip to content

Commit

Permalink
test: bump timeout in windows browser spec
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jul 1, 2024
1 parent 16827f7 commit 73e2c71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/app-jest/test/browser.e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ describe('browser', () => {
const text = await page.getByRole('heading', { name: 'Welcome to Nuxt!' }).textContent()
expect(text).toContain('Welcome to Nuxt!')
await page.close()
})
}, 10000)
})
2 changes: 1 addition & 1 deletion examples/app-vitest/test/browser.e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ describe('browser', () => {
const text = await page.getByRole('heading', { name: 'Welcome to Nuxt!' }).textContent()
expect(text).toContain('Welcome to Nuxt!')
await page.close()
})
}, 10000)
})

0 comments on commit 73e2c71

Please sign in to comment.