Questions tagged [jscoverage]

JSCoverage is a tool that measures code coverage for JavaScript programs.

JSCoverage is a tool that measures code coverage for JavaScript programs.

Code coverage statistics show which lines of a program have been executed (and which have been missed). This information is useful for constructing comprehensive test suites (hence, it is often called test coverage).

JSCoverage works by instrumenting the JavaScript code used in web pages. Code coverage statistics are collected while the instrumented JavaScript code is executed in a web browser.

JSCoverage supports the complete language syntax described in the ECMAScript Language Specification (ECMA-262, 3rd edition). JSCoverage works with any modern standards-compliant web browser - including Internet Explorer (IE 6, 7, and 8), Firefox, Opera, Safari, and Google Chrome - on Microsoft Windows and GNU/Linux.

JSCoverage is free software, distributed under the GNU General Public License version 2.

Source:http://siliconforks.com/jscoverage/

31 questions
0
votes
1 answer

Get LCOV compatible output from JSCover/JSCoverage coverage.xml or jscoverage.json

Summary I've recently switched from using Google's JsTestDriver to Testem but miss LCOV HTML Code Coverage Reports, is there a way to convert JSCover output into LCOV format, so I can use genhtml to create reports like these. Detail I'm working from…
Jamie Mason
  • 4,159
  • 2
  • 32
  • 42
1 2
3