Socket
Socket
Sign inDemoInstall

junit-report-builder

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

junit-report-builder - npm Package Compare versions

Comparing version 2.0.0 to 2.1.0

2

package.json
{
"name": "junit-report-builder",
"version": "2.0.0",
"version": "2.1.0",
"description": "Aimed at making it easier to build Jenkins compatible JUnit XML reports in plugins for testing frameworks",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -71,2 +71,5 @@ junit-report-builder

### 2.1.0
- Added support for adding a `file` attribute to a test case. Thanks to [Ben Holland](https://github.com/hollandben).
### 2.0.0

@@ -83,3 +86,3 @@ - Replace mkdirp by make-dir to resolve [npm advisory 1179](https://www.npmjs.com/advisories/1179).

Thanks to [rturner-edjuster](https://github.com/rturner-edjuster).
Thanks to [Robert Turner](https://github.com/rturner-edjuster).

@@ -86,0 +89,0 @@ ### 1.3.1

@@ -30,2 +30,7 @@ function TestCase() {

TestCase.prototype.file = function (filepath) {
this._attributes.file = filepath;
return this;
};
TestCase.prototype.failure = function (message, type) {

@@ -32,0 +37,0 @@ this._failure = true;

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