added new table costo

This commit is contained in:
2026-02-23 14:37:55 -06:00
parent 8c69da9999
commit 59d3ec1490
9 changed files with 108 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
import { Test, TestingModule } from '@nestjs/testing';
import { CostoController } from './costo.controller';
import { CostoService } from './costo.service';
describe('CostoController', () => {
let controller: CostoController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [CostoController],
providers: [CostoService],
}).compile();
controller = module.get<CostoController>(CostoController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});