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