Enhance testing documentation to emphasize the use of embedded/ephemeral Postgres fixtures for tests requiring a database. Update AGENTS.md, README.md, and SKILL.md to reflect this policy and ensure no external DB dependency for standard test runs.
CI / test (push) Successful in 4s

This commit is contained in:
2026-03-01 12:15:53 +00:00
parent c2aa716ed8
commit 39748a2c9b
3 changed files with 8 additions and 0 deletions
+1
View File
@@ -25,6 +25,7 @@ Use this skill when implementing or debugging backend, frontend integration, Typ
- Update `internal/app/service.go` first.
- Then wire request/response changes in `internal/http/handlers.go`.
- Add/update tests in `internal/http/api_test.go`.
- If persistence behavior is under test, use embedded/ephemeral Postgres fixtures (no external DB dependency for standard test runs).
2. Frontend integration changes
- Update TS client first in `libs/geo-api-client/src/`.