Open
Description
In Angular, it's best practice to put the unit tests inside the component and service folders next to the services and components. If the tests are in a different place they are harder to keep track of.
It would be better if we could configure karma to run unit tests from wherever we configure it to be e.g.:
// list of files / patterns to load in the browser
files: ['src/app/**/*.spec.ts'],