Files
AFFiNE-Mirror/tests/affine-local/e2e/exception-page.spec.ts
2023-09-17 03:50:26 +00:00

9 lines
289 B
TypeScript

import { test } from '@affine-test/kit/playwright';
import { expect } from '@playwright/test';
test('visit 404 page', async ({ page }) => {
await page.goto('http://localhost:8080/404');
const notFoundTip = page.getByTestId('not-found');
await expect(notFoundTip).toBeVisible();
});