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