19 lines
485 B
TypeScript
19 lines
485 B
TypeScript
|
|
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();
|
||
|
|
});
|
||
|
|
});
|