From 7496630a940d3e7636c4337b21e28e7d166bf9c0 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Wed, 23 Jan 2019 00:47:44 +0200 Subject: [PATCH] test(docs-infra): increase timeout for redirection tests more (#28290) Occasionally, external URLs take even longer than the previously set 60s to load, which causes CI flakes. PR Close #28290 --- aio/tests/deployment/e2e/redirection.e2e-spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/tests/deployment/e2e/redirection.e2e-spec.ts b/aio/tests/deployment/e2e/redirection.e2e-spec.ts index 559cfb2d98..bf292fdc94 100644 --- a/aio/tests/deployment/e2e/redirection.e2e-spec.ts +++ b/aio/tests/deployment/e2e/redirection.e2e-spec.ts @@ -38,7 +38,7 @@ describe(browser.baseUrl, () => { const actualUrl = await getCurrentUrl(); expect(actualUrl).toBe(expectedUrl); - }, 60000); + }, 120000); }); });