testaro 53.1.2 → 53.1.4

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 -0
  2. package/package.json +1 -1
package/netWatch.js CHANGED
@@ -199,6 +199,7 @@ exports.netWatch = async (isForever, intervalInSeconds, isCertTolerant = true) =
199
199
  ? httpsClient
200
200
  : httpClient;
201
201
  const reportLogStart = `Submitted report ${id} to ${publicReportURL} and got `;
202
+ const reportJSON = JSON.stringify(report, null, 2);
202
203
  // Send the report to the server that assigned the job.
203
204
  reportClient.request(reportURL, {method: 'POST'}, repResponse => {
204
205
  const chunks = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "53.1.2",
3
+ "version": "53.1.4",
4
4
  "description": "Run 1000 web accessibility tests from 11 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {