Files
production-evyos-systems-an…/ServicesApi/src/auth/password/verify-otp/verify-otp.service.spec.ts
2025-07-25 22:46:37 +03:00

19 lines
482 B
TypeScript

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