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