0.0.1 • Published 8 years ago

testem-statistics v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

testem-statistics

A statistics reporter for Testem.

What does it do?

Prints a chart after running tests that provides an overview of various statistics.

How do I use it?

In your testem.js file, import the statistics reporter class and create an instance to provide as the reporter.

/* global require, module */
var StatisticsReporter = require('testem-statistics');

module.exports = {
  "reporter": new StatisticsReporter(),
  ...
};