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