import { expect, test } from '@playwright/experimental-ct-vue' // B1 smoke: proves Playwright Component Testing is wired and Chromium // boots. Replaces no functionality; deleted once a real component // test (B2 sanity) supersedes it. test('chromium boots in CT runner', async ({ page }) => { expect(page).toBeTruthy() })