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