test(docs-infra): increase timeout for redirection tests more ()

Occasionally, external URLs take even longer than the previously set 60s
to load, which causes CI flakes.

PR Close 
This commit is contained in:
George Kalpakas 2019-01-23 00:47:44 +02:00 committed by Jason Aden
parent 6e949f9e98
commit 7496630a94

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