Files
AFFiNE-Mirror/tests/parallels/exception-page.spec.ts
2023-03-23 17:15:40 -05:00

12 lines
344 B
TypeScript

import { expect } from '@playwright/test';
import { test } from '../libs/playwright';
test.describe('exception page', () => {
test('visit 404 page', async ({ page }) => {
await page.goto('http://localhost:8080/404');
const notFoundTip = page.locator('[data-testid=notFound]');
await expect(notFoundTip).toBeVisible();
});
});