Lodash
Postman ships with Lodash
// is equal https://lodash.com/docs/#isEqual
_.isEqual(value, other);
// omit https://lodash.com/docs/#omit
_.omit(object, [paths]); // [paths] can be replaced by a callback method
Snippets
Set Environment Variable
pm.environment.set("foo-response", pm.response.json());
Test
Assert Response Status
pm.test("Successful response", function () {
pm.response.to.have.status(200);
});