mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-24 01:23:03 +03:00
15 lines
428 B
TypeScript
15 lines
428 B
TypeScript
import { expect } from '@playwright/test';
|
|
import { test } from './libs/playwright.js';
|
|
import { loadPage } from './libs/load-page.js';
|
|
|
|
loadPage();
|
|
|
|
// ps aux | grep 8080
|
|
test.describe('exception page', () => {
|
|
test('visit 404 page', async ({ page }) => {
|
|
await page.goto('http://localhost:8080/404');
|
|
const notFoundTip = page.locator('[data-testid=notFound]');
|
|
await expect(notFoundTip).toBeVisible();
|
|
});
|
|
});
|