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