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