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