import httpx async def test_healthz_returns_ok(client: httpx.AsyncClient) -> None: resp = await client.get("/api/v1/healthz") assert resp.status_code == 200 assert resp.json() == {"status": "ok"}