Description
Set up integration testing infrastructure that tests API endpoints against a real PostgreSQL database.
Requirements
Infrastructure
Test Patterns
Initial Tests
CI Integration
Notes
Integration tests are slower than unit tests but critical for verifying SQL queries, database constraints, and API behavior. Keep them focused — test the boundaries (HTTP → database), not business logic (that's what unit tests are for).
Description
Set up integration testing infrastructure that tests API endpoints against a real PostgreSQL database.
Requirements
Infrastructure
Test Patterns
Initial Tests
CI Integration
npm run test:integrationNotes
Integration tests are slower than unit tests but critical for verifying SQL queries, database constraints, and API behavior. Keep them focused — test the boundaries (HTTP → database), not business logic (that's what unit tests are for).