mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-03 02:20:19 +08:00
test: update visit 404 page test case
This commit is contained in:
@@ -7,7 +7,7 @@ export const NotfoundPage = () => {
|
|||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
return (
|
return (
|
||||||
<PageContainer>
|
<PageContainer>
|
||||||
<NotFoundTitle>
|
<NotFoundTitle data-testid="notFound">
|
||||||
{t('404 - Page Not Found')}
|
{t('404 - Page Not Found')}
|
||||||
<p>
|
<p>
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -8,8 +8,7 @@ loadPage();
|
|||||||
test.describe('exception page', () => {
|
test.describe('exception page', () => {
|
||||||
test('visit 404 page', async ({ page }) => {
|
test('visit 404 page', async ({ page }) => {
|
||||||
await page.goto('http://localhost:8080/404');
|
await page.goto('http://localhost:8080/404');
|
||||||
await page.waitForTimeout(1000);
|
const notFoundTip = page.locator('[data-testid=notFound]');
|
||||||
const notFoundTip = page.getByText('404 - Page Not Found');
|
await expect(notFoundTip).toBeVisible();
|
||||||
expect(await notFoundTip.isVisible()).toBe(true);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user