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