0👍
This should be possible by affecting the ‘preprocessor’ entry in your karma conf : only files matching this will be monitored for coverage.
See following issue > https://github.com/karma-runner/karma-coverage/issues/13
In your case something like
preprocessor: { 'src/!(util)/**/*.js' : 'coverage' }
should do the trick
- [Vuejs]-VueJS Grpc-Web module not found
- [Vuejs]-How can i match with current user Id with firebase database data's value?
Source:stackexchange.com