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