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