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