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