@ijodkor/nest-payme
Version:
NestJs ilovalar uchun Payme ETT bilan integratsiya qilish uchun kutubxona.
19 lines (14 loc) • 467 B
text/typescript
import { Test, TestingModule } from '@nestjs/testing';
import { ReceiptService } from './receipt.service';
describe('ReceiptService', () => {
let service: ReceiptService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [ReceiptService],
}).compile();
service = module.get<ReceiptService>(ReceiptService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});