testaro 43.0.2 → 43.0.3
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.
- package/package.json +1 -1
- package/run.js +1 -2
package/package.json
CHANGED
package/run.js
CHANGED
|
@@ -502,7 +502,7 @@ const abortActs = async (report, actIndex) => {
|
|
|
502
502
|
report.jobData.abortedAct = actIndex;
|
|
503
503
|
report.jobData.aborted = true;
|
|
504
504
|
// Report that the job is aborted.
|
|
505
|
-
console.log(
|
|
505
|
+
console.log(`ERROR: Job aborted on act ${actIndex}`);
|
|
506
506
|
// Return an abortive act index.
|
|
507
507
|
return -2;
|
|
508
508
|
};
|
|
@@ -527,7 +527,6 @@ const addError = async(alsoLog, alsoAbort, report, actIndex, message) => {
|
|
|
527
527
|
}
|
|
528
528
|
// If the job is to be aborted:
|
|
529
529
|
if (alsoAbort) {
|
|
530
|
-
console.log(`report:\n${JSON.stringify(report, null, 2)}`);
|
|
531
530
|
// Return an abortive act index.
|
|
532
531
|
return await abortActs(report, actIndex);
|
|
533
532
|
}
|