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