Test Structure
Tests are organized by layer:
test/
├── service/ # Service layer tests
├── coordinator/ # Coordinator tests
├── domain/ # Pure domain logic tests
└── helpers/ # Test utilities
Each test file corresponds to a source file:
fund/service.ts→test/service/fund.test.tscoordinator/eod/service.ts→test/coordinator/eod/integration.test.ts