From af90c71ef1615f6fb71a6b5c4b2890513440629d Mon Sep 17 00:00:00 2001 From: achingbrain Date: Tue, 8 Oct 2024 18:09:49 +0100 Subject: [PATCH] fix: increase timeout --- test/index.spec.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/index.spec.js b/test/index.spec.js index 942fc18..cba9f67 100644 --- a/test/index.spec.js +++ b/test/index.spec.js @@ -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 }) => {