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