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