You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The defaults contain test{,-*}.{js,cjs,mjs,ts} and **/*{.,-}test.{js,cjs,mjs,ts}, so I don't know why such files are being coverage checked in my projects:
The workaround is to add a .nycrc.json file to your project like this:
{
"exclude": ["**/*.test.*"]
}
The text was updated successfully, but these errors were encountered:
According to the istanbul docs:
The defaults contain
test{,-*}.{js,cjs,mjs,ts}
and**/*{.,-}test.{js,cjs,mjs,ts}
, so I don't know why such files are being coverage checked in my projects:The workaround is to add a
.nycrc.json
file to your project like this:The text was updated successfully, but these errors were encountered: