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