Files
edr-platform/apps/edr-freight-api/src/modules/otp/otp.service.spec.ts
2026-05-26 05:40:53 +03:00

19 lines
439 B
TypeScript

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