Closed
Description
Versions
- What is this plugin's version? 3.2.1
- What is Cypress version? 4.4.0
- What is your operating system? Mac OS X 10.15.4
- What is the Node version? 12.14.1
- What is the NPM version? 6.13.4
Describe the bug
If I have the following in my package.json:
"nyc": {
"report-dir": "coverage/integration",
"all": true,
"include": ["src/**/*.js"],
"exclude": ["**/*.test.js", "**/*.stories.js"]
}
Note that design-system coverage is 100% but hasn't included all files in this folder.
Link to the repo
https://github.com/penx/storybook-code-coverage
yarn
yarn coverage:integration
open coverage/integration/lcov-report/index.html
side note - is it possible to put the nyc config for cypress anywhere other than package.json? I am using nyc for multiple reports and would rather not store the cypress-specific config in a shared location. Just checking if this would be a feature request.