We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90d18b4 commit d5fce49Copy full SHA for d5fce49
examples/js-libp2p-example-delegated-routing/test/index.spec.js
@@ -57,7 +57,10 @@ test.describe('delegated routing example:', () => {
57
await page.click(findProvidersBtn)
58
59
const outputLocator = page.locator(output)
60
- await expect(outputLocator).toContainText('[')
+ 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
+ })
64
})
65
66
test('should find peer using the delegate', async ({ page, context }) => {
0 commit comments