Summary
Add explicit return payload typing for the existing /health endpoint in apps/backend/src/app.ts and add a vitest test to lock behavior.
Tasks
Acceptance Criteria
Why this is good first issue
Low risk, easy integration point, adds test coverage for existing behavior.
Summary
Add explicit return payload typing for the existing
/healthendpoint inapps/backend/src/app.tsand add avitesttest to lock behavior.Tasks
apps/backend/src/app.ts, update/healthroute to return{ status: 'ok' }and annotate with TypeScript type.apps/backend/src/__tests__/app.test.tsor similar and assert GET/healthreturns 200 and correct body.pnpm --filter @devcard/backend test.Acceptance Criteria
/healthroute is typed and still returns 200.Why this is good first issue
Low risk, easy integration point, adds test coverage for existing behavior.