import { Test, TestingModule } from '@nestjs/testing';
import { TwilioOtpService } from './twilio-otp.service';

describe('TwilioOtpService', () => {
  let service: TwilioOtpService;

  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      providers: [TwilioOtpService],
    }).compile();

    service = module.get<TwilioOtpService>(TwilioOtpService);
  });

  it('should be defined', () => {
    expect(service).toBeDefined();
  });
});
