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