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