Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
A QUnit plugin for producing JUnit-style XML test reports.
branch: master

travis: Update channel to #jquery-dev

Looks like #jquery-testing has been merged back into #jquery-dev and #jquery-infrastructure.
latest commit 5adb7b604e
Timo Tijhof Krinkle authored
Failed to load latest commit information.
test Add unit tests and update grunt to 0.4
.gitattributes Build: Normalize line endings
.gitignore
.jshintignore
.jshintrc Add unit tests and update grunt to 0.4
.travis.yml travis: Update channel to #jquery-dev
AUTHORS.txt Initial import from 'jquery/qunit.git:addons/junitlogger'.
CONTRIBUTING.md Docs: Removed IRC channel links in CONTRIBUTING.md
Gruntfile.js build: Update devDependencies
LICENSE.txt Build: Update license
README.md readme: Update badges
package.json Build: Update license
qunit-reporter-junit.js Bump post-release version

README.md

JUnit reporter for QUnit Build Status NPM version

A QUnit plugin that produces JUnit-style XML test reports (e.g. for integration into build tools like Jenkins).

Usage

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);
};

Notes

If you're using Grunt, you should take a look grunt-contrib-qunit.

Something went wrong with that request. Please try again.