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