hospital-log/backend/api/src/log/log.controller.spec.ts

19 lines
471 B
TypeScript
Raw Normal View History

2025-10-21 10:42:59 +00:00
import { Test, TestingModule } from '@nestjs/testing';
import { LogController } from './log.controller';
describe('LogController', () => {
let controller: LogController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [LogController],
}).compile();
controller = module.get<LogController>(LogController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});