1.0.2 • Published 9 years ago

qunit-reporter-lcov v1.0.2

Weekly downloads
59
License
-
Repository
github
Last release
9 years ago

lcov reporter for QUnit

Build Status NPM version bitHound Score

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.