Results 211 comments of Corey Farrell

@RoniSegal I just tried your repo: ``` git clone https://github.com/RoniSegal/missing-branch-coverage cd missing-branch-coverage npm install npm test ``` Got the following error: ``` > nyc --reporter=html mocha tsOutputs/test Warning: Could not...

I'm able to reproduce this issue now. I checked the the `if (event === "failed")` branch. `tsc` translated this to `if (event == "failed")` at line 70. In the raw...

I'm pretty sure we can transfer this issue (@JaKXz?).

@RoniSegal that is correct, I got mixed up for some reason thought this was reported against nyc.

@RoniSegal Sorry there is not, source maps issues are very difficult. If any updates are available they will be posted here.

@Kosta-Github if you haven't already could you post a new bug against nyc including all the information requested there? Without seeing a reproduction I'm wondering if you have `all: true`...

@Kosta-Github yes please give that a try. This is important because nyc transpiles code to add instrumentation, `ts-node/register` also transpiles. An issue is that nyc is not being told to...

You have `sourceMap: false` in your nycrc, could you try setting that true? Also if source-map is disabled in your tsconfig please enable on that end. When you get a...

nyc 15.0.0 is released and fixes a major cause of this issue for nyc.

Please post a link to a repository demonstrating this issue. I suspect any remaining occurrences of this issue are caused by something other than [email protected] generating the coverage data.