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