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); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });