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