new structure whit other database

This commit is contained in:
2025-10-23 08:35:55 -06:00
parent ec1dd723d2
commit f66de9458b
65 changed files with 123 additions and 80 deletions
@@ -0,0 +1,20 @@
import { Test, TestingModule } from '@nestjs/testing';
import { TransaccionController } from './transaccion.controller';
import { TransaccionService } from './transaccion.service';
describe('TransaccionController', () => {
let controller: TransaccionController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [TransaccionController],
providers: [TransaccionService],
}).compile();
controller = module.get<TransaccionController>(TransaccionController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});