junitwriter
v0.4.1
Published
A junit reporter for node
Downloads
3,361
Maintainers
Readme
JUnitWriter
A junit reporter for node.
Installation
This package is available on npm
as: junitwriter
npm install junitwriter
Methods
The documentation is work in progress
Writer
new Writer()
Creates an instance of the junit reporter. When creating an instance a
testsuites rootnode is created internally which can be accessed through the
function getTestsuites()
.
getTestsuites()
Retuns the testsuites root node.
addTestsuite(name)
Adds and retuns a testsuite node inside the testsuites root node.
save(destination, callback)
This function saves the content of the report to a file at the given
destination
.
Testsuites
addTestsuite(name)
Adds and retuns a testsuite node inside the testsuites root node.
incDisabled(amount)
incErrors(amount)
incFailures(amount)
incTests(amount)
setTime(seconds)
setName(name)
setSystemOut(out)
setSystemError(err)
showIds()
hideIds()
Testsuite
Testsuite can appear multiple times as a child element of testsuites.