import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { TrFlowErrorsComponent } from './tr-flow-errors.component'; describe('TrFlowErrorsComponent', () => { let component: TrFlowErrorsComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ TrFlowErrorsComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(TrFlowErrorsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });