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