nuevas tablas por nuevos requisitos
This commit is contained in:
@@ -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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user