mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-27 03:42:08 +03:00
15 lines
432 B
TypeScript
15 lines
432 B
TypeScript
|
import { test, expect } from '@playwright/test';
|
||
|
import { loadPage } from './libs/load-page';
|
||
|
|
||
|
loadPage();
|
||
|
|
||
|
// ps aux | grep 8080
|
||
|
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);
|
||
|
});
|
||
|
});
|