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