Is there a code coverage tool that can be used for Html5?
I came across a tool for Javascript (JSCoverage) but i dont see any reference to if it can be used for Html5?
I see another tool called Clover. can that be used?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
HTML5 is not a programming language; it’s just the markup language and a set of APIs. A JavaScript code coverage tool should be independent of what version of HTML you are using. So whether JSCoverage works for you shouldn’t depend on whether you’re using HTML5 or not; it should just depend on whether JSCoverage works with your codebase.
When many people say “HTML5” they mean HTML5 + JavaScript + CSS. If that’s what you mean, then yes, JSCoverage should work for you.
It looks like JSCoverage has been superseded by JSCover, so you might want to try that instead.
Clover is a Java code coverage tool, not JavaScript (despite the similarity in name, they have nothing to do with one another). Clover will not work for an HTML5 + JavaScript + CSS application.