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