import { test, expect } from '@playwright/test'; test('API server starts and returns 200', async ({ page }) => { await page.goto('http://localhost:3000/api/health'); await expect(page.status()).toBe(200); });