Files
PROJECT-CONTORL/frontend/e2e/smoke.spec.ts
2026-01-11 08:37:21 +08:00

7 lines
267 B
TypeScript

import { expect, test } from 'playwright/test';
test('smoke: basic rendering works', async ({ page }) => {
await page.setContent('<main><h1>Smoke</h1><p>Playwright ready</p></main>');
await expect(page.getByRole('heading', { name: 'Smoke' })).toBeVisible();
});