This commit is contained in:
Eric Gullickson
2025-11-04 18:38:06 -06:00
parent d8d0ada83f
commit d4156cf521
20 changed files with 1149 additions and 186 deletions

View File

@@ -7,7 +7,6 @@
## Commands (containers)
- Build: `make rebuild`
- Tests: `make test-frontend`
- Logs: `make logs-frontend`
## Structure
@@ -25,7 +24,8 @@
## Testing
- Jest config: `frontend/jest.config.ts` (jsdom).
- Setup: `frontend/setupTests.ts` (Testing Library).
- Run: `make test-frontend` (containerized).
- Run: `docker compose exec mvp-frontend npm test` (from project root, containerized).
- Watch mode: `docker compose exec mvp-frontend npm run test:watch`.
## Patterns
- State: co-locate feature state in `src/core/store` (Zustand) and React Query for server state.