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