Add unit tests for HealthService

This commit is contained in:
Jose Eduardo 2025-08-09 22:35:52 -04:00
parent 1e629442c3
commit 198563f330

View File

@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { HealthService } from '../services/health.service';
describe('HealthService', () => {
let service: HealthService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [HealthService],
}).compile();
service = module.get<HealthService>(HealthService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});