modulo modelo listo

This commit is contained in:
xXpuma99Xx
2022-07-18 16:01:24 -05:00
parent 19decd70e2
commit f73d279a1a
12 changed files with 158 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { ModeloController } from './modelo.controller';
describe('ModeloController', () => {
let controller: ModeloController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [ModeloController],
}).compile();
controller = module.get<ModeloController>(ModeloController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});