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