test(docs-infra): make redirection tests more robust (#26649)

PR Close #26649
This commit is contained in:
George Kalpakas 2018-10-29 11:18:23 +02:00 committed by Matias Niemelä
parent 72f3d99920
commit ea7ec4a6b3
1 changed files with 2 additions and 0 deletions

View File

@ -59,7 +59,9 @@ describe(browser.baseUrl, () => {
it('should serve `index.html` for unknown pages', async () => {
const aioShell = element(by.css('aio-shell'));
const heading = aioShell.element(by.css('h1'));
await page.goTo(unknownPagePath);
await browser.wait(() => page.getDocViewerText(), 5000); // Wait for the document to be loaded.
expect(aioShell.isPresent()).toBe(true);
expect(heading.getText()).toMatch(/page not found/i);