/JSCover

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

Primary LanguageJava

JSCover - A JavaScript code coverage measurement tool.

JSCover is an easy-to-use JavaScript code coverage measuring tool. It is an enhanced version of the popular JSCoverage, having added several features including branch coverage and LCOV reports. It's big distinguishing factor from other JavaScript coverage tools is that it easily runs in any browser (supporting JavaScript) allowing coverage measurement of tests that include DOM interaction. It can be run with most tools (e.g. Jasmine, QUnit, etc...).

Development

Development with JSCover is simple. It is an Ant build using Maven's dependency management. What you need:

  • Java (minimum 1.5)
  • Ant (developed with version 1.9.0)
  • Ant's Maven Task (developed with maven-ant-tasks-2.1.3.jar)

Most development has been done with IntelliJ community edition, and some with Eclipse. Project files for both IDEs are checked in, but any editor can be used. Before checking in any changes, be sure to run the build files pre-commit. NB: pre-commit runs the report and enforces coverage limits on unit and integration tests. Acceptance test coverage is collected and can be viewed by running the coverage-report target manually after pre-commit.