Files
api-AT/src/costo/costo.service.spec.ts
T
2026-02-23 14:37:55 -06:00

19 lines
453 B
TypeScript

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