Usually, when we talk about architecture, we talk about the application itself. We think about layers, domain models and interfaces to structure our code. Most of the time the tests will follow this architecture. We create one test per service and mirror our code.
|
user-dashboard.service.js user-dashboard.service.spec.js |
This is fine for unit and even integration tests, but […]