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