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); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });