Skip to content

Commit

Permalink
test: bump timeout in test also
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jan 11, 2025
1 parent 68b889a commit dcf038a
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -10,7 +10,7 @@ await setup({
})

describe('browser', () => {
it('runs a test', async () => {
it('runs a test', { timeout: 20000 }, async () => {
const page = await createPage('/')
const text = await page.getByRole('heading', { name: 'Welcome to Nuxt!' }).textContent()
expect(text).toContain('Welcome to Nuxt!')
Expand Down

0 comments on commit dcf038a

Please sign in to comment.