controllers

This commit is contained in:
2022-03-29 22:03:19 -06:00
parent 2720f6319e
commit 359b73132b
49 changed files with 496 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { ModuloController } from './modulo.controller';
describe('ModuloController', () => {
let controller: ModuloController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [ModuloController],
}).compile();
controller = module.get<ModuloController>(ModuloController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});