New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@casualbot/jest-sonar-reporter

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@casualbot/jest-sonar-reporter - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

2

lib/src/utils/buildJsonResults.js

@@ -77,2 +77,3 @@ "use strict";

'errors': 0,
'skipped': 0,
'time': executionTime(report.startTime, Date.now())

@@ -124,2 +125,3 @@ }

jsonResults.testsuites[0]._attr.failures += suite.numFailingTests;
jsonResults.testsuites[0]._attr.skipped += suite.numPendingTests;
jsonResults.testsuites[0]._attr.errors += suiteErrors;

@@ -126,0 +128,0 @@ jsonResults.testsuites[0]._attr.tests += suiteNumTests;

@@ -17,4 +17,7 @@ "use strict";

}
else if (testResult.status === 'pending') {
return { testCase: [aTestCase].concat({ skipped: {} }) };
}
return { testCase: aTestCase };
};
exports.testCase = testCase;

2

package.json
{
"name": "@casualbot/jest-sonar-reporter",
"version": "2.3.0",
"version": "2.3.1",
"description": "A Sonar test reporter for Jest.",

@@ -5,0 +5,0 @@ "keywords": [

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