nuevas tablas por nuevos requisitos

This commit is contained in:
2022-03-31 14:33:11 -06:00
parent 4eb8c1336e
commit 631bfa6c11
24 changed files with 319 additions and 1 deletions
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { CarreraProgramaController } from './carrera-programa.controller';
describe('CarreraProgramaController', () => {
let controller: CarreraProgramaController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [CarreraProgramaController],
}).compile();
controller = module.get<CarreraProgramaController>(CarreraProgramaController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});