mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
5156313074
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
24 lines
741 B
TypeScript
24 lines
741 B
TypeScript
import { setupTestServer } from '@test-integration/utils';
|
|
|
|
import * as testDb from './shared/test-db';
|
|
|
|
const testServer = setupTestServer({ endpointGroups: ['health'] });
|
|
|
|
describe('HealthcheckController', () => {
|
|
it('should return ok when DB is connected and migrated', async () => {
|
|
const response = await testServer.restlessAgent.get('/healthz/readiness');
|
|
|
|
expect(response.statusCode).toBe(200);
|
|
expect(response.body).toEqual({ status: 'ok' });
|
|
});
|
|
|
|
it('should return error when DB is not connected', async () => {
|
|
await testDb.terminate();
|
|
|
|
const response = await testServer.restlessAgent.get('/healthz/readiness');
|
|
|
|
expect(response.statusCode).toBe(503);
|
|
expect(response.body).toEqual({ status: 'error' });
|
|
});
|
|
});
|