hospital-log/backend/api/src/modules/proof/proof.controller.spec.ts

19 lines
485 B
TypeScript
Raw Normal View History

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