Skip to content

Commit d5fce49

Browse files
committed
fix: increase timeout
1 parent 90d18b4 commit d5fce49

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/js-libp2p-example-delegated-routing/test/index.spec.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ test.describe('delegated routing example:', () => {
5757
await page.click(findProvidersBtn)
5858

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

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

0 commit comments

Comments
 (0)