No commit activity in last 3 years
No release in over 3 years
Javascript Coverage Tool
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.4.6
~> 1.1.1
~> 1.0

Runtime

~> 4.0
~> 0.11.1
 Project Readme

JCov¶ ↑

Coverage reports on your Javascript tests!

Supports:

  • Jasmine

  • JSpec

  • Any other Javascript with a custom runner file.

Installation¶ ↑

gem install jcov

Getting Started¶ ↑

There are both JSpec and Jasmine example projects in the examples directory – these are a good place to start.

You will need at least a Javascript runner file for JCov to work.

Command Line¶ ↑

jcov run

Runs the tests. Also the default command (just type ‘jcov’)

jcov check

Check the configuration.

jcov help

Show help docs.

Global Options:

-c, --config FILE    Specify a configuration file to use 
-h, --help           Display help documentation 
-v, --version        Display version information 
-t, --trace          Display backtrace when an error occurs

Run Options:

-t, --test REGEX     Limit the tests to only the ones that match the regular expression 
--verbose            Verbose test execution 
--[no-]color         Enable/Disable color output -- default enabled when executed from the command-line 
--[no-]coverage      Enable/Disable coverage output -- default enabled 
--report             Report test coverage

Running with the –report switch will output an HTML coverage report that shows line-by-line coverage.

If your testing framework supports color output your runner file must pass the color boolean value from the JCov object (JCov.options.color) to the framework (see the Jasmine and JCov examples).

The –verbose switch is another option your framework must support (see the JCov example).

Run will also return with a non-zero code when the tests don’t pass so it can be easily integrated into continuous integration suites.

jcov.yaml¶ ↑

Configure JCov by creating a jcov.yaml file. JCov also has some “intelligent” defaults and you can see the how the jcov.yaml file works with those defaults using the check command to output the combined configuration:

jcov check

JCov will look for the jcov.yaml file in a config directory and the current directory.

Example jcov check output:

Using configuration file: ./jcov.yml
--- 
test_directory: tests
source_directory: javascripts
test_runner: jasmine/runner.js
error_field: results
report_output_directory: jcov
ignore: 
- jasmine
- tests

Configuration Keys¶ ↑

test_directory

Where the test files are kept. (Default test/javascripts)

source_directory

Where the source files are kept. (Default public/javascripts)

test_runner

The Javascript file JCov executes to run your tests. (Default test/javascripts/runner.js)

error_field

The Javascript variable that JCov examines to find out how many failures occurred while running the test suite. (Default error_count)

report_output_directory

Where the HTML coverage reports will be written. (Default jcov)

Runner Files¶ ↑

You will need a Javascript runner file to tell JCov how to run your tests. This is usually a simple script that loads your testing framework, the source and test files, and calls whatever execute() method your framework needs. After the tests are run it needs to This is intentionally left open to make it easier for JCov to support arbitrary frameworks.

See the examples directory for examples.

Runner API¶ ↑

JCov provides some methods and a data object to the runner file.

  • The JCov object

    • JCov.tests: An Array of tests to execute (the list of everything from your test directory filtered by the –test switch)

    • JCov.config: The configuration loaded from jcov.yaml (see above)

    • JCov.options: Passed in command line options (see above)

  • Global Methods

    • print(): Print to the console.

    • println(): Print to the console with a carriage return.

    • load(): load and execute the given file.

    • readFile(): load file and return it as a string.

    • putc(): Print a single character to the console.

Headless Browser Testing¶ ↑

Headless browser testing can be supported with something like the env.js project which mimics the browser/DOM interface in a pure Javascript way.

Maintainers¶ ↑

License¶ ↑

Copyright © YP Intellectual Property, LLC 2012. JCov is licensed under the MIT License.