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 +0 -1
- package/package.json +1 -1
- package/tests/ibm.js +0 -10
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
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);
|