I have an Angular application (v10) which is being tested using manual and selenium based automated suite. I have no unit tests or e2e tests, only external testing is available.
I would like to have code coverage of my component/services/helpers/etc. Any ideas if possible and how to do that?
I have experience with nyc/istanbul and for node/express applications it works great simply by nyc node index.js, however with angular doing nyc ng serve fails the compilation and I am unable to access my application!
Edit: I realize that the application will be running in the browser but I guess I was hoping for magical solution to make it just work!
I really appreciate any help.