mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-28 19:12:07 +03:00
9 lines
298 B
TypeScript
9 lines
298 B
TypeScript
import { test } from '@affine-test/kit/playwright';
|
|
import { expect } from '@playwright/test';
|
|
|
|
test('visit 404 page', async ({ page }) => {
|
|
await page.goto('http://localhost:8080/404');
|
|
const notFoundTip = page.locator('[data-testid=notFound]');
|
|
await expect(notFoundTip).toBeVisible();
|
|
});
|