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