import { ComponentFixture, TestBed } from '@angular/core/testing'; import { provideRouter } from '@angular/router'; import { provideHttpClient } from '@angular/common/http'; import { provideAnimations } from '@angular/platform-browser/animations'; import { ProductComponent } from './product.component'; describe('ProductComponent', () => { let component: ProductComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [ProductComponent], providers: [ provideRouter([]), provideHttpClient(), provideAnimations(), ], }) .compileComponents(); fixture = TestBed.createComponent(ProductComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });