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