zarro 1.206.0 → 1.207.0
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.
|
@@ -246,11 +246,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
246
246
|
if (!!result.exitCode) {
|
|
247
247
|
const errors = (result.stderr || []);
|
|
248
248
|
if (errors.length === 0) {
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
haveGenericWarning = true;
|
|
253
|
-
}
|
|
249
|
+
debug(`Test run fails for: ${tryFindTestProjectFromTestCli(result.args)}\nstdout: ${result.stdout.join("\n")}`);
|
|
250
|
+
allErrors.push(`Test run fails for: ${tryFindTestProjectFromTestCli(result.args)}`);
|
|
251
|
+
haveGenericWarning = true;
|
|
254
252
|
}
|
|
255
253
|
else {
|
|
256
254
|
allErrors.push(`Test run fails for: ${tryFindTestProjectFromTestCli(result.args)}`);
|