import { test, expect } from '@playwright/test'; test('dashboard smoke flow', async ({ page }) => { await page.goto('/'); await expect(page.getByText('Live Ops Pulse')).toBeVisible(); await expect(page.locator('#metric-success')).toContainText('%'); });