Js Code Coverage
Solution 1:
I'm not entirely sure what you mean by:
"code coverage"
as your question is a little hard to understand.
But I'm assuming you are referring to some form of visualizer like this one that allows you to see step by step how your code is being executed and why it behaves as it does in a given program. As to a browser plugin or tool existing for the purpose you outline I am not aware of one that can achieve what it is I think you want. That being said, the way you phrased your question is a little strange and some clarification would go a long way to help me or someone else better answer your question.
On the other more likely hand, you refer to the actual concept of code coverage, a percentage that refers to more or less the amount of code run when tests are being run (Franci Penov does a much better job explaining here). Google Chrome does CSS and JS code coverage in-browser (at least according to these release notes).
This is a link for a Javascript code coverage testing tool
I hope my very shaky understanding of this issue helps!
Post a Comment for "Js Code Coverage"