Files
tonePage/apps/backend/src/captcha/captcha.controller.spec.ts

19 lines
499 B
TypeScript

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