GithubHelp home page GithubHelp logo

isabella232 / mocha-bamboo-reporter Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tabcorp/mocha-bamboo-reporter

0.0 0.0 0.0 93 KB

Bamboo Reporter for Mocha on Node.js

License: Other

JavaScript 100.00%

mocha-bamboo-reporter's Introduction

nvm mocha-bamboo-reporter

Bamboo Reporter for Mocha on Node.js

Designed to integrate with Atlassian Bamboo's Node.js plugin

Usage

mocha -R mocha-bamboo-reporter

Integrating mocha & bamboo with mocha-bamboo-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-reporter", and a script "bamboo" as outlined below...

package.json

...
"devDependencies": {
    ...
    "mocha": ">=1.8.1",
    "mocha-bamboo-reporter": "*"
}

"scripts": {
    ...
    "bamboo": "node node_modules/mocha/bin/mocha -R mocha-bamboo-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 runs rm -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-reporter
  • Add a "Node.js" task with script node_modules/mocha/bin/mocha and arguments --reporter mocha-bamboo-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

In some cases, you may only want to see which tests passed, failed or were skipped.

To configure this, add mocha-bamboo.opts to the root of your project. For example,

mocha-bamboo.opts

{
  "report"   : {
    "passes"   : false,
    "skipped"  : false,
    "failures" : true
  }
}

This example configuration only adds tests that failed to your mocha.json. Note that your mocha.json will still include passed and skipped arrays, only they will be empty.

The default configuration sets all three options to true

mocha-bamboo-reporter's People

Contributors

issacg avatar m-oles avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.