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