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