19 lines
473 B
TypeScript
19 lines
473 B
TypeScript
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>(SupplierService);
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(service).toBeDefined();
|
|
});
|
|
});
|