testaro 55.0.0 → 55.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.
package/README.md CHANGED
@@ -838,7 +838,6 @@ You may store environment variables in an untracked `.env` file if you wish, and
838
838
  ```conf
839
839
  AGENT=agentabc
840
840
  DEBUG=false
841
- JOB_URLs=https://yourserver.tld/job/AgentABC:abcSecretX+http://localhost:3004/testapp?agent=AgentABC:AuthABC33
842
841
  JOBDIR=../testing/jobs
843
842
  NETWATCH_URL_0_JOB=http://localhost:3000/api/assignJob/agentabc:abcpw
844
843
  NETWATCH_URL_0_OBSERVE=http://localhost:3000/api/granular/agentabc:abcpw
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "55.0.0",
3
+ "version": "55.0.2",
4
4
  "description": "Run 1000 web accessibility tests from 11 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/tests/ibm.js CHANGED
@@ -151,16 +151,6 @@ const doTest = async (content, withItems, timeLimit, rules) => {
151
151
  const runReport = await run(content, timeLimit);
152
152
  // If there were results:
153
153
  if (runReport.report) {
154
- // Delete any report files.
155
- try {
156
- const reportNames = await fs.readdir('ibmOutput');
157
- for (const reportName of reportNames) {
158
- await fs.rm(`ibmOutput/${reportName}`);
159
- }
160
- }
161
- catch(error) {
162
- console.log('No result files created');
163
- };
164
154
  // Return a trimmed act report.
165
155
  const {report} = runReport;
166
156
  const trimmedReport = trimActReport(data, report, withItems, rules);