testilo 32.0.2 → 32.1.0

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/script.js +1 -1
package/README.md CHANGED
@@ -326,7 +326,7 @@ The `call` module will save the script as a JSON file in the `scripts` subdirect
326
326
 
327
327
  The `script` module will use the value of the `SEND_REPORT_TO` environment variable as the value of the `sendReportTo` property of the script, if that variable exists, and otherwise will leave that property with an empty-string value.
328
328
 
329
- When the `script` module creates a script for you, it does not ask you for all of the other options that the script may require. Instead, it chooses default options. For example, it sets the values of `isolate` and `strict` to `true`. After you invoke `script`, you can edit the script that it creates to revise options.
329
+ When the `script` module creates a script for you, it does not ask you for all of the other options that the script may require. Instead, it chooses default options. For example, it sets the values of `isolate` and `strict` to `true`, and it sets the `withNewContent` property of the `ibm` tool to `false` to prevent occasional infinite loops or crashes when targets cause HTTP2 protocol errors. After you invoke `script`, you can edit the script that it creates to revise options.
330
330
 
331
331
  ### Merge
332
332
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "32.0.2",
3
+ "version": "32.1.0",
4
4
  "description": "Prepares and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {
package/script.js CHANGED
@@ -146,7 +146,7 @@ exports.script = (id, what, options = {}) => {
146
146
  }
147
147
  else if (toolID === 'ibm') {
148
148
  toolAct.withItems = true;
149
- toolAct.withNewContent = true;
149
+ toolAct.withNewContent = false;
150
150
  }
151
151
  else if (toolID === 'qualWeb') {
152
152
  toolAct.withNewContent = false;