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