summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/shared/components/charts
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-11-06 13:23:17 +0530
committerArundathi Patil <arundpil@in.ibm.com>2019-11-06 13:23:24 +0530
commit319ee68f1006f0f3f8252583fb4a8c9551e51f57 (patch)
tree5c3e1fc397833c7487f1b4f8cfd26a1fcbdd2b76 /usecaseui-portal/src/app/shared/components/charts
parent237ed72e04ae121297a0594be069a26db49d0f5b (diff)
pie component- spec changes
Added NgxEchartsModule to imports. Issue-ID: USECASEUI-280 Change-Id: Ie650241660eb8e4d8636f39ad444e12123a6c7ed Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'usecaseui-portal/src/app/shared/components/charts')
-rw-r--r--usecaseui-portal/src/app/shared/components/charts/pie/pie.component.spec.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/shared/components/charts/pie/pie.component.spec.ts b/usecaseui-portal/src/app/shared/components/charts/pie/pie.component.spec.ts
index 528da25c..09e48ad7 100644
--- a/usecaseui-portal/src/app/shared/components/charts/pie/pie.component.spec.ts
+++ b/usecaseui-portal/src/app/shared/components/charts/pie/pie.component.spec.ts
@@ -1,4 +1,5 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import { NgxEchartsModule } from 'ngx-echarts';
import { PieComponent } from './pie.component';
@@ -8,7 +9,8 @@ describe('PieComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ PieComponent ]
+ declarations: [ PieComponent ],
+ imports: [NgxEchartsModule]
})
.compileComponents();
}));