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 318bd83a6e
commit 1d67cb0ce1

View File

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