diff --git a/aio/tests/deployment/e2e/redirection.e2e-spec.ts b/aio/tests/deployment/e2e/redirection.e2e-spec.ts index 481b92419a..d6229e0fd6 100644 --- a/aio/tests/deployment/e2e/redirection.e2e-spec.ts +++ b/aio/tests/deployment/e2e/redirection.e2e-spec.ts @@ -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);