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