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