Added NgxEchartsModule to imports.
Issue-ID: USECASEUI-280
Change-Id: Ie650241660eb8e4d8636f39ad444e12123a6c7ed
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import { NgxEchartsModule } from 'ngx-echarts';
import { PieComponent } from './pie.component';
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ PieComponent ]
+ declarations: [ PieComponent ],
+ imports: [NgxEchartsModule]
})
.compileComponents();
}));