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
Twing is plagued by this issue: we have a module named src/lib/helpers/get-test.ts which contains the getTest helper method that returns a Twing test from its name. This is not a test file, we did not ask it to be ignored but still it is missing from the report: https://coveralls.io/builds/65055920
Renaming it to get-foo.ts restores its presence in the report.
Interestingly enough, we also have a file named src/lib/node/expression/call/test.ts and it is not ignored.
I don't think I understand why nyc is ignoring files by itself. We already include files, so it is unclear why nyc assumes that we want to ignore certain files that are among those that we explicitly include.
Link to bug demonstration repository
Twing is plagued by this issue: we have a module named
src/lib/helpers/get-test.ts
which contains thegetTest
helper method that returns a Twing test from its name. This is not a test file, we did not ask it to be ignored but still it is missing from the report: https://coveralls.io/builds/65055920Renaming it to
get-foo.ts
restores its presence in the report.Interestingly enough, we also have a file named
src/lib/node/expression/call/test.ts
and it is not ignored.I don't think I understand why
nyc
is ignoring files by itself. We already include files, so it is unclear whynyc
assumes that we want to ignore certain files that are among those that we explicitly include.Expected Behavior
Files ending with
-test.ts
are not ignored.Observed Behavior
Files ending with
-test.ts
are ignored.Environment Information
The text was updated successfully, but these errors were encountered: