Our API response has fields like timestamp, GUID’s etc which I would like to exclude from the comparison in pm.expect.
How can we exclude a field completely from the comparison in expect like in my case the response looks like.
{
"userId": "This is a random Guid",
"dateCreated": "This is a dynamic timestamp",
"firstName" : "Test"
}
So in this data, I would like to compare my whole response JSON with an expected JSON(which I have in a separate variable).
I can compare this using pm.expect(actualJSON).to.eql(expectedJSON);