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