import { test, expect } from '@playwright/test'; test('health endpoint returns ok', async ({ request }) => { const response = await request.get('/healthz'); expect(response.ok()).toBeTruthy(); });