I wanted to verify whether a particular value is in response to a GET request
what do i write for the test? I tried the below but i think i must be doing something wrong
pm.test(“Body matches string”, function () {
pm.expect(pm.response.text()).to.include(45563);
});