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 must have to go src/test.ts and can change the following line number code 18:
src/test.ts
//Then we find all the tests. const context = require.context('./', true, /\.spec\.ts$/);
to
//Then we find all the tests. const context = require.context('./', true, /testing.component\.spec\.ts$/);