The function below (defined in pre-request at the collection level) requires the postman data from the current request that is calling it. Is there anyway I can make it so I do not have to include postman myself when I call the function? Make it global or is there a way to specify it uses postman by default if not provided. Eg so supplying the value in the function call becomes optional.
Object.prototype.fail = (msg, postman) => {
pm.test(pm.info.requestName, () => { throw new Error(msg) });
console.info(pm.info.requestName + " | " + msg);
postman.setNextRequest(null);
};
pm.fail("This has failed for a reason",postman);