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