import { HealthController } from './health.controller'; describe('HealthController', () => { it('returns an ok status for liveness checks', () => { expect(new HealthController().getHealth()).toEqual({ status: 'ok' }); }); });