@zohodesk/unit-testing-framework 0.0.18-experimental → 0.0.19-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.
|
@@ -84,6 +84,7 @@ function buildArgv(config, {
|
|
|
84
84
|
if (testPathPattern) {
|
|
85
85
|
argv.testPathPattern = testPathPattern;
|
|
86
86
|
}
|
|
87
|
+
console.log('Jest CLI argv:', argv);
|
|
87
88
|
return argv;
|
|
88
89
|
}
|
|
89
90
|
|
|
@@ -101,5 +102,6 @@ async function executeJest(argv, projectRoot) {
|
|
|
101
102
|
const {
|
|
102
103
|
results
|
|
103
104
|
} = await runCLI(argv, [projectRoot]);
|
|
105
|
+
console.log('Jest run results:', results);
|
|
104
106
|
return results;
|
|
105
107
|
}
|