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
Hello! I have a Nx project with Angular, one app, multiple libs, each of them has barrel file with exports - index.ts.
Some exports in those file goes like that export * from 'whatever', but there are also multiple named like export { Something } from 'whatever'. I have perfect coverage report for all of them but one.
In one of my libs, main barrel file of the lib gets 100% of statement coverage, but 0% of coverage in terms of functions on all my named exports. I cannot figure out why coverage works for named exports in other barrel files but in this particular one.
I made sure that things exported in uncovered lines are used in multiple places of both given lib and in app, they are also used in tests in both lib and app - all of these tests pass and have proper coverage.
Screen of coverage report (you can notice "8x" in terms of lines and red marking in terms of functions):
Hello! I have a Nx project with Angular, one app, multiple libs, each of them has barrel file with exports -
index.ts
.Some exports in those file goes like that
export * from 'whatever'
, but there are also multiple named likeexport { Something } from 'whatever'
. I have perfect coverage report for all of them but one.In one of my libs, main barrel file of the lib gets 100% of statement coverage, but 0% of coverage in terms of functions on all my named exports. I cannot figure out why coverage works for named exports in other barrel files but in this particular one.
I made sure that things exported in uncovered lines are used in multiple places of both given lib and in app, they are also used in tests in both lib and app - all of these tests pass and have proper coverage.
Screen of coverage report (you can notice "8x" in terms of lines and red marking in terms of functions):
My env:
[email protected]
[email protected]
[email protected]
nrwl/[email protected]
[email protected]
Anyone knows how to fix it?
The text was updated successfully, but these errors were encountered: