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