0.0.1 • Published 8 years ago

karma-junit-sonarqube-reporter2 v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

karma-junit-sonarqube-reporter

Reporter for the JUnit XML format which is also Sonarqube (a.k.a. Sonar) friendly. This plugin is a modification of the existing karma-junit-reporter plugin.

Installation

The easiest way is to keep karma-junit-sonarqube-reporter as a devDependency in your package.json.

{
  "devDependencies": {
    "karma": "~0.10",
    "karma-junit-sonarqube-reporter": "~0.0.1"
  }
}

You can simple do it by:

npm install karma-junit-sonarqube-reporter --save-dev

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    reporters: ['progress', 'junit'],

    // the default configuration
    junitReporter: {
      outputFile: 'test-results.xml',
      suite: ''
    }
  });
};

You can pass list of reporters as a CLI argument too:

karma start --reporters junit,dots

For more information on Karma see the homepage.