19 lines
521 B
TypeScript
19 lines
521 B
TypeScript
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>(ConfigLogsController);
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(controller).toBeDefined();
|
|
});
|
|
});
|