Skip to content

Commit

Permalink
Increase test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBCarter committed Oct 12, 2023
1 parent 70257a2 commit ccb6b01
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ describe('useSpaPage', () => {
return await page.content()
})
expect(result).toContain(expected)
})
}, 25000)
})
describe('with navigateToRootFirst=true', () => {
it('gets the page', async () => {
const result = await useSpaPage(uri, async (page) => {
return await page.content()
})
expect(result).toContain(expected)
})
}, 25000)
})
})

0 comments on commit ccb6b01

Please sign in to comment.