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

25 lines
723 B
TypeScript

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