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