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