test: update visit 404 page test case

This commit is contained in:
JimmFly
2023-02-06 17:00:21 +08:00
parent 6f71198f04
commit 66d2033cda
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ export const NotfoundPage = () => {
const router = useRouter();
return (
<PageContainer>
<NotFoundTitle>
<NotFoundTitle data-testid="notFound">
{t('404 - Page Not Found')}
<p>
<Button
+2 -3
View File
@@ -8,8 +8,7 @@ loadPage();
test.describe('exception page', () => {
test('visit 404 page', async ({ page }) => {
await page.goto('http://localhost:8080/404');
await page.waitForTimeout(1000);
const notFoundTip = page.getByText('404 - Page Not Found');
expect(await notFoundTip.isVisible()).toBe(true);
const notFoundTip = page.locator('[data-testid=notFound]');
await expect(notFoundTip).toBeVisible();
});
});