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

import { ChangeSupplierComponent } from './change-supplier.component';

describe('ChangeSupplierComponent', () => {
  let component: ChangeSupplierComponent;
  let fixture: ComponentFixture<ChangeSupplierComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ ChangeSupplierComponent ]
    })
    .compileComponents();

    fixture = TestBed.createComponent(ChangeSupplierComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
