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