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