Reputation: 1
The problem is that we have to test code coverage in our angular project. So we use nyc, nyc modified source files(and insert some code to collect code coverage), but the issue is that while serving application webpack takes files from memory, not from /dist folder and these files are without our changes from nyc.
in summary what we are doing:
the question is: how to run angular and force it to take files from /dist
Upvotes: 0
Views: 18