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