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