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