Files
pcpuma_unam_api/src/carrera-programa/carrera-programa.controller.spec.ts
T

19 lines
556 B
TypeScript

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();
});
});