taurus-tv/src/app/tsp-info/tr-flow-errors/tr-flow-errors.component.spec.ts
2017-09-06 18:53:31 +02:00

26 lines
676 B
TypeScript

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