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