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