Тестовая цель как https://mysite.xyz
Вот мой тестовый код в Почтальоне:
pm.test("Response time is less than 200ms", function () {
pm.expect(pm.response.responseTime).to.be.below(200);
});
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
Его можно вставить в клиент Почтальона.Но не удалось в Postman Monitor cloud.Из журнала попали такие сообщения:
4 15:25:48 Error: ESOCKETTIMEDOUT
5 15:25:48 Failed: Response time is less than 200ms
6 15:25:48 expected undefined to be a number or a date
7 15:25:48 Failed: Status code is 200
8 15:25:48 expected { Object (id, _details, ...) } to have property 'code'
Уже выбрали Disable SSL validation
на странице настроек.
Почему?