Files
cedetec_api_nest/src/tyl/tyl.controller.spec.ts
T
2026-08-03 11:14:41 -06:00

19 lines
471 B
TypeScript

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