Fix test failures and workload/websocket behavior

This commit is contained in:
beabigegg
2026-01-11 08:37:21 +08:00
parent 3bdc6ff1c9
commit f5f870da56
49 changed files with 3006 additions and 1132 deletions

View 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();
});