Is there a way to run ng test for a single file instead of for the entire test suite? Ideally, I\'d like to get the quickest possible feedback loop when I\'m e
ng test
You can go to src/test.ts and can change the following line:
src/test.ts
const context = require.context('./', true, /\.spec\.ts$/);
to
const context = require.context('./', true, /**yourcomponent.component**\.spec\.ts$/);