diff --git a/src/modules/health/tests/health.service.spec.ts b/src/modules/health/tests/health.service.spec.ts new file mode 100644 index 0000000..c89be68 --- /dev/null +++ b/src/modules/health/tests/health.service.spec.ts @@ -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); + }); + + it('should be defined', () => { + expect(service).toBeDefined(); + }); +});