Files
TI-FCYT-URBAN/bot-wsp/src/ia/ia.controller.spec.ts
T
Valentin Romero 25d4ba6cc0 add bot wsp
2026-06-30 22:04:56 -03:00

21 lines
536 B
TypeScript

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