AFFiNE/tests/affine-local/e2e/exception-page.spec.ts
2023-10-12 05:04:58 +00:00

10 lines
332 B
TypeScript

import { test } from '@affine-test/kit/playwright';
import { open404Page } from '@affine-test/kit/utils/load-page';
import { expect } from '@playwright/test';
test('visit 404 page', async ({ page }) => {
await open404Page(page);
const notFoundTip = page.getByTestId('not-found');
await expect(notFoundTip).toBeVisible();
});