Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

karma-sonarqube-reporter

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-sonarqube-reporter

A karma reporter plugin for generating Sonarqube generic test reports

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
32K
decreased by-1.34%
Maintainers
1
Weekly downloads
 
Created
Source

karma-sonarqube-reporter

A Karma reporter plugin for generating SonarQube generic test reports.

Build Status Coverage Status

Installation

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

Configuration

Adjust your karma.conf.js file:

Create a new plugin entry

plugins: [
  require('karma-sonarqube-reporter')
]

Add configuration parameters

// Configuration example
sonarqubeReporter: {
  basePath: 'src/app',        // test files folder
  filePattern: '**/*spec.ts', // test files glob pattern
  outputFolder: 'reports',    // report destination
  encoding: 'utf-8',          // report encoding
  reportName: (metadata) => { // report name callback
    /**
     * Report metadata content:
     * - metadata[0] = browser name
     * - metadata[1] = browser version
     * - metadata[2] = plataform name
     * - metadata[3] = plataform version
     * e.g. firefox.54.0.0.linux.0.0.0.xml
     * e.g. chrome.65.0.3325.linux.0.0.0.xml
     */
     return metadata.concat('xml').join('.');
  }
}

Activate sonarqube reporter

reporters: ['sonarqube']

Click here to see a full example.

Running

If your project uses Angular CLI run ng test and check the output folder.

$ ls reports
firefox.54.0.0.linux.0.0.0.xml
chrome.65.0.3325.linux.0.0.0.xml

The report files' schema is defined on the SonarQube Generic Test Data page.

Add the following property to your sonar-project.properties:

sonar.testExecutionReportPaths= \
  reports/firefox.54.0.0.linux.0.0.0.xml, \
  reports/chrome.65.0.3325.linux.0.0.0.xml

Finally, start SonarQube Scanner on your project folder.

That's all!

Keywords

FAQs

Package last updated on 05 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc