tests: update test title

This commit is contained in:
tzhangchi
2022-12-23 16:07:08 +08:00
parent 286272e7a0
commit 1c7142dc96
+2 -2
View File
@@ -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);