clairvoyance

0.4.2 • Public • Published

Clairvoyance - a css code coverage tool

npm version Build Status codecov.io Inline docs

Installation

Install with npm:

$ npm install -g clairvoyance

Getting Started

Run as follow:

$ clairvoyance --css path/app.css --html path/index.html

And this will write a coverage file to coverage/css-coverage.json.

Usage

Usage: clairvoyance [options]

Options:

  -h, --help             output usage information
  -V, --version          output the version number
  --css <path>           specify css path
  --html <path>          specify html path
  -R, --reporter <name>  append the reporter

-R, --reporter

The --reporter option allows you to append the reporter. For example, you append the clairvoyance-html to generate a html report.

$ clairvoyance --css path/app.css --html path/index.html --reporter clairvoyance-html

Then, you will get a html report like below:

source code view:

API

var Clairvoyance = require("clairvoyance");
 
var parser = new Clairvoyance({css: "path/app.css", html: "path/index.html"});
parser.run(function(result) {
  console.log(result);
  // { "path/app.css": [null, null, 0, 0, 1, 1, 2, ...] }
});

Readme

Keywords

Package Sidebar

Install

npm i clairvoyance

Weekly Downloads

4

Version

0.4.2

License

MIT

Last publish

Collaborators

  • sinsoku