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
I don't know if this is on Ibrik's end or CSR's end, but I've submitted the issue to CSR since it originates in their code. On Ibrik's end, it may be necessary (depending on what CSR says is expected behavior) to somehow clean out the CSR instance between files.
To sum up the other issue, essentially having a file with extends will cause every subsequently processed Coffeescript file to include the helper functions that extends needs when compiled to JS. This causes code coverage to report otherwise 100% covered files as being incompletely covered despite every line in the reports being green because the boilerplate functions like isOwn$ and extends$ are never reached by files that don't actually need to use these.
The text was updated successfully, but these errors were encountered:
This was apparently fixed with the release of 2.0.0 and the move away from CSR. Seems to work for me.
However, one more issue is it would be great if full coverage was reported when the CS extends helper is compiled into the actual source. Currently, coverage is impossible to be at 100% on any extended class because of the conditional branches introduced by the compiler.
michaelficarra/CoffeeScriptRedux#314
I don't know if this is on Ibrik's end or CSR's end, but I've submitted the issue to CSR since it originates in their code. On Ibrik's end, it may be necessary (depending on what CSR says is expected behavior) to somehow clean out the CSR instance between files.
To sum up the other issue, essentially having a file with
extends
will cause every subsequently processed Coffeescript file to include the helper functions thatextends
needs when compiled to JS. This causes code coverage to report otherwise 100% covered files as being incompletely covered despite every line in the reports being green because the boilerplate functions likeisOwn$
andextends$
are never reached by files that don't actually need to use these.The text was updated successfully, but these errors were encountered: