qunit-reporter-lcov
v1.0.2
Published
Produce lcov test reports with QUnit
Downloads
44
Maintainers
Readme
lcov reporter for QUnit
A QUnit plugin that produces lcov test reports (e.g. for integration into build tools like Jenkins).
Based on qunit-report-jUnit & Nodeunit lcov reporter
Usage
Include the plugin script after QUnit itself, then implement the lcovReport
hook to do something with the lcov string (e.g. upload it to a server):
QUnit.lcovReport = function(report) {
console.log(report.lcov);
};
Notes
If you're using Grunt, you should take a look grunt-contrib-qunit.