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