Skip to content

Commit

Permalink
fix: increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Oct 8, 2024
1 parent 0dc653b commit af90c71
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ test.describe('delegated routing example:', () => {
await page.click(findProvidersBtn)

const outputLocator = page.locator(output)
await expect(outputLocator).toContainText('[')
await expect(outputLocator).toContainText('[', {
// we depend on an external service and it can take a long time to respond
timeout: 5 * 60_000
})
})

test('should find peer using the delegate', async ({ page, context }) => {
Expand Down

0 comments on commit af90c71

Please sign in to comment.