Udit Vasu

Results 52 comments of Udit Vasu

@ceoro9 Actually, there's an `abortOnError` runner option (refer to [this test](https://github.com/postmanlabs/postman-runtime/blob/develop/test/unit/runner.test.js#L43)) which you can set to make sure the run terminates with an error.

@halfzebra I already reviewed this PR once, great work by @duddu 👏 Changes made are in the right direction but currently, we haven't thought of how parallel runs will be...

@alexindigo Thanks for the reply. `options.header` won't overwrite the `Content-Disposition` header value. Since, [populate](https://github.com/form-data/form-data/blob/master/lib/populate.js#L6) will always pick the destination value, not the source(custom).

@alexindigo Yes, that's one way. Would be great if you consider adding support of this.

@1004Manish That's odd, you are facing this issue only when fetching the collection through the API, right? I tried reproducing this issue locally by sending a self-signed localhost request and...

@niranjankhare This is not supported yet. For now, you can specify a unique name to your `_identifier` and pass that to `--folder` option.

@vdespa is execution getting terminated before `request` callback? I can't think of any other reason for this issue. You can see we are doing a similar request in `beforeDone` callback...

@vdespa can you share the link to the reporter (or a sample reporter) with this behavior, will have a look.

With this I got the following logged before ending the execution: (which I feel is the expected output) ``` before after error: null statusCode: 200 body: { "args": {}, "headers":...

@vdespa I can confirm this happens when there's a failure (like assertion failure) in the Newman execution because the process gets terminated with exit code 1. For now, you can...