From 1c7142dc96ff93118642cc2df1850a776ee8866f Mon Sep 17 00:00:00 2001 From: tzhangchi Date: Fri, 23 Dec 2022 16:07:08 +0800 Subject: [PATCH] tests: update test title --- tests/exception-page.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/exception-page.spec.ts b/tests/exception-page.spec.ts index 3512934e9c..d8bdf10a41 100644 --- a/tests/exception-page.spec.ts +++ b/tests/exception-page.spec.ts @@ -5,9 +5,9 @@ loadPage(); // ps aux | grep 8080 test.describe('exception page', () => { - test('bisit 404 page', async ({ page }) => { + test('visit 404 page', async ({ page }) => { await page.goto('http://localhost:8080/404'); - await page.waitForTimeout(300); + await page.waitForTimeout(1000); const notFoundTipDom = await page.getByText('404 - Page Not Found'); await expect(await notFoundTipDom.isVisible()).toBe(true);