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