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

junit-report-merger

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

junit-report-merger

Merges multiple JUnit XML reports into one.

  • 7.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
308K
decreased by-35.31%
Maintainers
1
Weekly downloads
 
Created

What is junit-report-merger?

The junit-report-merger npm package is designed to merge multiple JUnit XML reports into a single report. This is particularly useful in continuous integration (CI) environments where tests are run in parallel and generate separate reports.

What are junit-report-merger's main functionalities?

Merge JUnit XML Reports

This feature allows you to merge multiple JUnit XML reports into a single file. The `mergeFiles` function takes an array of input file paths and an output file path, and merges the input files into the output file.

const { mergeFiles } = require('junit-report-merger');

mergeFiles(['report1.xml', 'report2.xml'], 'merged-report.xml')
  .then(() => console.log('Reports merged successfully!'))
  .catch(err => console.error('Error merging reports:', err));

Other packages similar to junit-report-merger

Keywords

FAQs

Package last updated on 04 May 2024

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