AFFiNE/tests/exception-page.spec.ts

16 lines
423 B
TypeScript
Raw Normal View History

2023-02-05 13:41:18 +03:00
import { expect } from '@playwright/test';
2023-02-17 10:33:32 +03:00
2023-02-17 05:43:52 +03:00
import { loadPage } from './libs/load-page';
2023-02-17 10:33:32 +03:00
import { test } from './libs/playwright';
loadPage();
// ps aux | grep 8080
test.describe('exception page', () => {
test('visit 404 page', async ({ page }) => {
await page.goto('http://localhost:8080/404');
2023-02-06 12:00:21 +03:00
const notFoundTip = page.locator('[data-testid=notFound]');
await expect(notFoundTip).toBeVisible();
});
});