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