AFFiNE/tests/affine-local/e2e/exception-page.spec.ts
2023-07-13 09:05:01 +00:00

9 lines
298 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.locator('[data-testid=notFound]');
await expect(notFoundTip).toBeVisible();
});