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

@diffblue/java-combiner

Package Overview
Dependencies
Maintainers
5
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@diffblue/java-combiner - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2-rc1

build/scripts/publishPackage.d.ts

5

build/testCombiner.js

@@ -56,7 +56,8 @@ "use strict";

for (const test of tests) {
const testName = test.name;
const testName = test.name || test.testName;
const numberTestOccurances = testNames.get(testName) || 0;
testNames.set(testName, numberTestOccurances + 1);
const newTestName = numberTestOccurances > 0 ? `${testName}${numberTestOccurances}` : testName;
test.body = test.body.replace(test.id, newTestName);
let body = test.body || test.test;
body = body.replace(test.id, newTestName);
dedupedTests.push(test);

@@ -63,0 +64,0 @@ }

2

package.json
{
"name": "@diffblue/java-combiner",
"description": "Java test combining library",
"version": "0.1.1",
"version": "0.1.2-rc1",
"main": "build/index.js",

@@ -6,0 +6,0 @@ "types": "build/index.d.ts",

Sorry, the diff of this file is not supported yet

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