Fix test failures and workload/websocket behavior
This commit is contained in:
6
frontend/e2e/smoke.spec.ts
Normal file
6
frontend/e2e/smoke.spec.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
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();
|
||||
});
|
||||
Reference in New Issue
Block a user