bar component spec- added module dependency 19/98119/1
authorArundathi Patil <arundpil@in.ibm.com>
Thu, 7 Nov 2019 09:34:50 +0000 (15:04 +0530)
committerArundathi Patil <arundpil@in.ibm.com>
Thu, 7 Nov 2019 09:34:56 +0000 (15:04 +0530)
Added NgxCharts module to imports

Issue-ID: USECASEUI-280
Change-Id: I3847993b1420f037aaf4374eafb9490d8e332b14
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
usecaseui-portal/src/app/shared/components/charts/bar/bar.component.spec.ts

index d979ffb..eb048a2 100644 (file)
@@ -1,4 +1,5 @@
 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import { NgxEchartsModule } from 'ngx-echarts';
 
 import { BarComponent } from './bar.component';
 
@@ -8,7 +9,8 @@ describe('BarComponent', () => {
 
   beforeEach(async(() => {
     TestBed.configureTestingModule({
-      declarations: [ BarComponent ]
+      declarations: [ BarComponent ],
+      imports:[ NgxEchartsModule ]
     })
     .compileComponents();
   }));