@diffblue/java-combiner
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -98,5 +98,5 @@ "use strict"; | ||
} | ||
return Object.freeze({ imports: imports, staticImports: staticImports, testMethods: testMethods }); | ||
return Object.freeze({ imports, staticImports, testMethods }); | ||
} | ||
exports.combineTests = combineTests; | ||
//# sourceMappingURL=combineTests.js.map |
@@ -232,11 +232,11 @@ "use strict"; | ||
impl: Object.freeze({ | ||
getMultiLineCommentChunk: getMultiLineCommentChunk, | ||
getSingleLineCommentChunk: getSingleLineCommentChunk, | ||
getStringChunk: getStringChunk, | ||
replaceExact: replaceExact, | ||
getMultiLineCommentChunk, | ||
getSingleLineCommentChunk, | ||
getStringChunk, | ||
replaceExact, | ||
}), | ||
parse: parse, | ||
replaceInCodeChunks: replaceInCodeChunks, | ||
stringifyChunk: stringifyChunk, | ||
parse, | ||
replaceInCodeChunks, | ||
stringifyChunk, | ||
}); | ||
//# sourceMappingURL=parse.js.map |
@@ -64,3 +64,5 @@ "use strict"; | ||
const classNameModified = className.replace(/\$/g, '_'); | ||
const classAnnotations = new Set(tests.map((test) => test.classAnnotations || [])); | ||
const classAnnotationsMap = []; | ||
classAnnotationsMap.concat(...tests.map((test) => test.classAnnotations)); | ||
const classAnnotations = new Set(classAnnotationsMap); | ||
const combinedTests = combineTests_1.combineTests({ tests: tests, existingImports: [] }); | ||
@@ -67,0 +69,0 @@ const testImports = combinedTests.imports; |
{ | ||
"name": "@diffblue/java-combiner", | ||
"description": "Java test combining library", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"main": "build/index.js", | ||
@@ -45,2 +45,3 @@ "files": [ | ||
"dependencies": { | ||
"@types/node": "^11.13.8", | ||
"duplex-child-process": "^1.0.0" | ||
@@ -47,0 +48,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1205
71773
2
+ Added@types/node@^11.13.8
+ Added@types/node@11.15.54(transitive)