— 아래 test script를 사용하여 API 사용 시 서버와의 통신을 통해 Response body로 JSON Response 객체가 오는지 확인했다

— 이 테스트 환경을 통해 500, 600번대의 서버에러 감지 시 서버 유지보수를 수월히 할 수 있었다

pm.test("Server Response check", function () {
    pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed
});