diff --git a/CypressTests/cypress/e2e/v1/healthchecks.cy.js b/CypressTests/cypress/e2e/v1/healthchecks.cy.js index 373ce0d49..aa9fcef5d 100644 --- a/CypressTests/cypress/e2e/v1/healthchecks.cy.js +++ b/CypressTests/cypress/e2e/v1/healthchecks.cy.js @@ -12,26 +12,9 @@ describe("Health and Database Checks", () => { } }) .then((response) => { - expect(response.body).to.contain('Health check ok') + expect(response.body).to.contain('Healthy') expect(response.status).to.eq(200) }) }) }) - - context('Database check endpoint', () => { - it('should return a healthy response', () => { - cy.api({ - url: `${url}/check_db`, - headers: { - ApiKey: apiKey, - "Content-type": "application/json" - } - }) - .then((response) => { - expect(response.status).to.eq(200) - expect(response.body).to.eq(true) - }) - }) - }) - })