testaro 2.0.1 → 2.0.2

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/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1132,11 +1132,13 @@ const doScriptOrBatch = async (options, reportTemplate) => {
1132
1132
  // If there is a batch:
1133
1133
  if (options.batch) {
1134
1134
  // Perform the script on all the hosts in the batch.
1135
+ console.log('Starting batch');
1135
1136
  await doBatch(options, reportTemplate);
1136
1137
  }
1137
1138
  // Otherwise, i.e. if there is no batch:
1138
1139
  else {
1139
1140
  // Perform the script.
1141
+ console.log('Starting no-batch script');
1140
1142
  await doScript(reportTemplate);
1141
1143
  }
1142
1144
  // Add an end time to the log.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Automation of accessibility testing",
5
5
  "main": "index.js",
6
6
  "scripts": {