testem-statistics
v0.0.1
Published
Prints a chart after running tests that provides an overview of various statistics.
Downloads
2
Maintainers
Readme
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(),
...
};