Files
AFFiNE-Mirror/tests/exception-page.spec.ts
DarkSky 6f0bded0a2 Revert "fix:test case (#763)"
This reverts commit c0b410a1b2.
2023-02-05 17:53:14 +08:00

15 lines
435 B
TypeScript

import { test, expect } from '@playwright/test';
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');
await page.waitForTimeout(1000);
const notFoundTip = page.getByText('404 - Page Not Found');
expect(await notFoundTip.isVisible()).toBe(true);
});
});