pcpuma_unam_api/src/carrera/carrera.controller.spec.ts
2022-03-31 14:33:11 -06:00

19 lines
499 B
TypeScript

import { Test, TestingModule } from '@nestjs/testing';
import { CarreraController } from './carrera.controller';
describe('CarreraController', () => {
let controller: CarreraController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [CarreraController],
}).compile();
controller = module.get<CarreraController>(CarreraController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});