Open bennypowers opened 4 years ago
I'd like to add a .nycrc.json in my project root and have karma-coverage pick up on it without needing to specify includes or excludes in my karma.conf.js
.nycrc.json
karma-coverage
karma.conf.js
Example config:
{ "include": ["src/**/*.js"], "exclude": [ "**/*.test.js", "stories/*", "test/*" ] }
Additionally, some users will want to specify a nyc key in their package.json with value same as above.
nyc
related to https://github.com/istanbuljs/nyc/issues/320
I'd like to add a
.nycrc.json
in my project root and havekarma-coverage
pick up on it without needing to specify includes or excludes in mykarma.conf.js
Example config:
Additionally, some users will want to specify a
nyc
key in their package.json with value same as above.