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