A QUnit plugin that produces JUnit-style XML test reports (e.g. for integration into build tools like Jenkins).
Include the plugin script after QUnit itself, then implement the jUnitReport
hook to do something with the XML string (e.g. upload it to a server):
QUnit.jUnitReport = function(report) {
console.log(report.xml);
};
If you're using Grunt, you should take a look grunt-contrib-qunit.