Files
bbq/src/app/routes/supply-management/components/update-external-sn/update-external-sn.component.spec.ts
wangshiming db95de90fb 货源修改
2021-12-03 15:22:55 +08:00

25 lines
809 B
TypeScript

import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { SupplyManagementUpdateExternalSnComponent } from './update-external-sn.component';
describe('SupplyManagementUpdateExternalSnComponent', () => {
let component: SupplyManagementUpdateExternalSnComponent;
let fixture: ComponentFixture<SupplyManagementUpdateExternalSnComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ SupplyManagementUpdateExternalSnComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SupplyManagementUpdateExternalSnComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});