/** * Wave 0 stub — GET /health: 200 + real DB round-trip * * This test is a RED stub. Implementation lives in: * apps/api/src/routes/health.ts (Task 2) * * The test will be filled GREEN in Task 2 when the health route is implemented. */ import { describe, it } from 'vitest' describe('GET /health', () => { it.todo('returns 200 with { ok: true, db: "up" } after a real DB round-trip (Task 2)') it.todo('returns 503 if the DB round-trip throws (Task 2)') })