import { Test, TestingModule } from '@nestjs/testing'; import { ConfigService } from './config.service'; describe('ConfigService', () => { let service: ConfigService; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ providers: [ConfigService], }).compile(); service = module.get(ConfigService); }); it('should be defined', () => { expect(service).toBeDefined(); }); });