🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

junit-report-merger

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
j

junit-report-merger

Merges multiple JUnit XML reports into one.

7.0.1
latest
100

Supply Chain Security

100

Vulnerability

100

Quality

78

Maintenance

100

License

Version published
Weekly downloads
469K
-7.4%
Maintainers
1
Weekly downloads
 
Created
Issues
6

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

FAQs

Package last updated on 24 Feb 2025

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