1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/src/lib/routes/health-check.test.ts
Jaanus Sellin ee08bd8d42
chore(deps): update dependency @types/supertest to v6 (#5926)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-17 13:36:17 +02:00

45 lines
1.2 KiB
TypeScript

import supertest, { Test } from 'supertest';
import { createServices } from '../services';
import { createTestConfig } from '../../test/config/test-config';
import createStores from '../../test/fixtures/store';
import getLogger from '../../test/fixtures/no-logger';
import getApp from '../app';
import TestAgent from 'supertest/lib/agent';
async function getSetup() {
const stores = createStores();
const config = createTestConfig();
const services = createServices(stores, config);
const app = await getApp(config, stores, services);
return {
request: supertest(app),
stores,
};
}
let request: TestAgent<Test>;
beforeEach(async () => {
const setup = await getSetup();
request = setup.request;
});
afterEach(() => {
getLogger.setMuteError(false);
});
test('should give 200 when ready', async () => {
await request.get('/health').expect(200);
});
test('should give health=GOOD when ready', async () => {
expect.assertions(2);
await request
.get('/health')
.expect(200)
.expect((res) => {
expect(res.status).toBe(200);
expect(res.body.health).toBe('GOOD');
});
});