add bot wsp

This commit is contained in:
Valentin Romero
2026-06-30 22:04:56 -03:00
parent 6859b89262
commit 25d4ba6cc0
166 changed files with 29830 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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();
});
});