Skip to content

groupe-sii/karma-junit7-sonarqube-reporter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

karma-junit7-sonarqube-reporter

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

Installation

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

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

You can simple do it by:

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

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    preprocessors: {
      'test/**/*.spec.js': ['junit']
    },

    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.

About

A Karma plugin. Report results in junit xml format.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%