Files
pcpuma_unam_api/src/prestamo/prestamo.controller.spec.ts
T
2022-03-29 22:03:19 -06:00

19 lines
506 B
TypeScript

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