In theIf there are specific implementation details you want included, make sure to specify. For example:my-web-app
repo (PR #42), refactor theUserService
class insrc/services/user.ts
to use theUserRepository
pattern shown inProductService
/ProductRepository
.
Ensure all tests intests/services/user.test.ts
pass and add new tests for the repository with 90%+ coverage. Update the diagram indocs/architecture/user-service.md
.
my-web-app
repo, PR #42
, src/services/user.ts
)UserService
, improve testability)UserRepository
, use dependency injection, update tests, update diagram)ProductService
, ProductRepository
)