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