Files
ashen-realms/apps/api/src/health/health.controller.spec.ts
2026-08-18 20:00:40 +02:00

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' });
});
});