import { Test, TestingModule } from '@nestjs/testing'; import { EdificioService } from './edificio.service'; // Asegúrate de importar el servicio correcto describe('EdificioService', () => { let service: EdificioService; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ providers: [EdificioService], // Asegúrate de incluir el servicio correcto aquí }).compile(); service = module.get(EdificioService); }); it('should be defined', () => { expect(service).toBeDefined(); }); });