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