@zohodesk/unit-testing-framework 0.0.20-experimental → 0.0.21-experimental
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -87,7 +87,6 @@ function buildArgv(config, {
|
|
|
87
87
|
if (testPathPattern) {
|
|
88
88
|
argv.testPathPatterns = [testPathPattern];
|
|
89
89
|
}
|
|
90
|
-
console.log('Jest CLI argv:', argv);
|
|
91
90
|
return argv;
|
|
92
91
|
}
|
|
93
92
|
|
|
@@ -105,6 +104,5 @@ async function executeJest(argv, projectRoot) {
|
|
|
105
104
|
const {
|
|
106
105
|
results
|
|
107
106
|
} = await runCLI(argv, [projectRoot]);
|
|
108
|
-
console.log('Jest run results:', results);
|
|
109
107
|
return results;
|
|
110
108
|
}
|