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