karma-junit-sonarqube-reporter2

0.0.1 • Public • Published

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.

Package Sidebar

Install

npm i karma-junit-sonarqube-reporter2

Weekly Downloads

12

Version

0.0.1

License

MIT

Last publish

Collaborators

  • oleg-amdocs