testaro 50.2.0 → 50.2.1

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/netWatch.js +1 -1
  2. package/package.json +1 -1
package/netWatch.js CHANGED
@@ -179,9 +179,9 @@ exports.netWatch = async (isForever, intervalInSeconds, isCertTolerant = true) =
179
179
  // Replace the placeholder with the value of the environment variable it names.
180
180
  reportDest = `${sendReportTo.replace(/\[([^]]+\])/, process.env[$1])}`;
181
181
  }
182
+ const reportLogStart = `Did job ${id}, sent report, and got `;
182
183
  // Send the report there.
183
184
  reportClient.request(reportDest, {method: 'POST'}, repResponse => {
184
- const reportLogStart = `Did job ${id}, sent report, and got `;
185
185
  const chunks = [];
186
186
  repResponse
187
187
  // If the response to the report threw an error:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "50.2.0",
3
+ "version": "50.2.1",
4
4
  "description": "Run 1000 web accessibility tests from 11 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {