Статус ответа на тест почтальона. Статус ответа
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
Tense Tarantula
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Response time is less than 200ms", () => {
pm.expect(pm.response.responseTime).to.be.below(200);
});