This commit is contained in:
2025-09-12 13:18:11 -04:00
parent e646597c7a
commit 873f34164f
12 changed files with 56 additions and 127 deletions
-20
View File
@@ -1,20 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { ServicioController } from './servicio.controller';
import { ServicioService } from './servicio.service';
describe('ServicioController', () => {
let controller: ServicioController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [ServicioController],
providers: [ServicioService],
}).compile();
controller = module.get<ServicioController>(ServicioController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});
-18
View File
@@ -1,18 +0,0 @@
import { Test, TestingModule } from '@nestjs/testing';
import { ServicioService } from './servicio.service';
describe('ServicioService', () => {
let service: ServicioService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [ServicioService],
}).compile();
service = module.get<ServicioService>(ServicioService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});