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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/run.js +1 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "43.0.2",
3
+ "version": "43.0.3",
4
4
  "description": "Run 1000 web accessibility tests from 10 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {
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('ERROR: Job aborted');
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
  }