postman-runtime 7.36.1 → 7.36.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/CHANGELOG.yaml +8 -0
- package/README.md +8 -1
- package/dist/index.js +1 -1
- package/lib/runner/extensions/item.command.js +1 -1
- package/lib/runner/extensions/request.command.js +35 -12
- package/lib/runner/extensions/waterfall.command.js +4 -0
- package/lib/runner/util.js +73 -1
- package/package.json +3 -3
package/CHANGELOG.yaml
CHANGED
package/README.md
CHANGED
|
@@ -252,7 +252,7 @@ runner.run(collection, { /* options */ }, function(err, run) {
|
|
|
252
252
|
},
|
|
253
253
|
|
|
254
254
|
// Called after completion of an Item
|
|
255
|
-
item: function (err, cursor, item, visualizer) {
|
|
255
|
+
item: function (err, cursor, item, visualizer, result) {
|
|
256
256
|
// err, cursor, item: Same as arguments for "beforeItem"
|
|
257
257
|
|
|
258
258
|
// visualizer: null or object containing visualizer result that looks like this:
|
|
@@ -266,6 +266,13 @@ runner.run(collection, { /* options */ }, function(err, run) {
|
|
|
266
266
|
// -- Processed template
|
|
267
267
|
// processedTemplate: <String>
|
|
268
268
|
// }
|
|
269
|
+
|
|
270
|
+
// result: undefined or object containing following properties
|
|
271
|
+
// {
|
|
272
|
+
// -- True for items skipped using pm.execution.skipRequest
|
|
273
|
+
// isSkipped: <Boolean>
|
|
274
|
+
// }
|
|
275
|
+
|
|
269
276
|
},
|
|
270
277
|
|
|
271
278
|
// Called before running pre-request script(s) (Yes, Runtime supports multiple pre-request scripts!)
|