diff --git a/test/api.js b/test/api.js index 022e31a112..a85143910d 100644 --- a/test/api.js +++ b/test/api.js @@ -412,6 +412,8 @@ describe('API', async () => { return; } + assert.strictEqual(response.statusCode, 200, `HTTP 200 expected (path: ${method} ${path}`); + const hasJSON = http200.content && http200.content['application/json']; if (hasJSON) { schema = context[method].responses['200'].content['application/json'].schema;