import { TestBed } from '@angular/core/testing';

import { ManageSupplierService } from './manage-supplier.service';

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

  beforeEach(() => {
    TestBed.configureTestingModule({});
    service = TestBed.inject(ManageSupplierService);
  });

  it('should be created', () => {
    expect(service).toBeTruthy();
  });
});
