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