mocha-bamboo-spec-reporter
v1.3.0
Published
A mocha reporter to allow Atlassian Bamboo to parse results
Downloads
23,740
Readme
mocha-bamboo-spec-reporter
Bamboo Reporter for Mocha on Node.js
Designed to integrate with Atlassian Bamboo's Node.js plugin
Usage
mocha -R mocha-bamboo-spec-reporter
Integrating mocha & bamboo with mocha-bamboo-spec-reporter
Download and install the Node.js Bamboo Plugin from the Atlassian Marketplace from inside your Bamboo installation. (Note that this is not yet supported for onDemand installations)
Then, in your package.json file, add a devDependency for "mocha-bamboo-spec-reporter", and a script "bamboo" as outlined below...
package.json
...
"devDependencies": {
...
"mocha": ">=1.8.1",
"mocha-bamboo-spec-reporter": "*"
}
"scripts": {
...
"bamboo": "node node_modules/mocha/bin/mocha -R mocha-bamboo-spec-reporter"
}
- In Bamboo, create an "npm task" with command
run-script bamboo
- Then, in Bamboo add a "Parse mocha results" task which runs afterwards to parse the results from mocha
- If you don't do a full checkout on each build, make sure you add a task to delete mocha.json BEFORE the
npm run-script bamboo
task (a simple script task that runsrm -f mocha.json
should do the trick)
Alternatively
To run your Mocha tests without modifying your package.json you can simply do the following in Bamboo:
- Add a "npm" task with command
install mocha-bamboo-spec-reporter
- Add a "Node.js" task with script
node_modules/mocha/bin/mocha
and arguments--reporter mocha-bamboo-spec-reporter
, along with any other arguments you want to pass to Mocha - You'll still need to run a "Parse mocha results" task, and ensure you don't use an old mocha.json
Options
If you want to use more options, combine them with a comma: --reporter-options output=/path/to/output.json,spec=true
File path
To overwrite the default output as mocha.json in current directory, add option --reporter-options output=/path/to/output.json
Console output
If you want to keep Mocha's default behavior of printing test results to the standard output using the spec reporter, add option --reporter-options spec=true