client.log(JSON.stringify(response.body)); client.test("Request executed successfully", function() { client.assert(response.status === 404, "Response status is not 200"); }); client.test("Response content-type is json", function() { var type = response.contentType.mimeType; client.assert...