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
This commit is contained in:
George Kalpakas 2019-01-23 00:47:44 +02:00 committed by Jason Aden
parent 6e949f9e98
commit 7496630a94
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ describe(browser.baseUrl, () => {
const actualUrl = await getCurrentUrl();
expect(actualUrl).toBe(expectedUrl);
}, 60000);
}, 120000);
});
});