We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Instead of using
"collectCoverageFrom": [ "src/*.{js,ts}" ]
Which only coverage the files under src, not including files in subfolders.
src
I suggest that change it into:
"collectCoverageFrom": [ "src/**/*.{js,ts}" ]
I took sometime to figure this out since I'm new to Jest. Hope this will help others like me.
I've created a PR if you agreed with me 😃
The text was updated successfully, but these errors were encountered:
Modify jest coverage setting to match all subfolders in src
003f97f
related issue: alexjoverm#293
No branches or pull requests
Hi,
Instead of using
Which only coverage the files under
src
, not including files in subfolders.I suggest that change it into:
I took sometime to figure this out since I'm new to Jest.
Hope this will help others like me.
I've created a PR if you agreed with me 😃
The text was updated successfully, but these errors were encountered: