Answers for "Writing tests for API requests"

C
0

Writing tests for API requests

pm.test("Request is successful with a status code of 200", function () {
  pm.response.to.have.status(200);
});

pm.test("Check that it returns an array", function () {
  var jsonData = pm.response.json();
  pm.expect(jsonData).to.be.an("array");
});
Posted by: Guest on June-18-2021

Code answers related to "C"

Browse Popular Code Answers by Language