summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-11-07 15:04:50 +0530
committerArundathi Patil <arundpil@in.ibm.com>2019-11-07 15:04:56 +0530
commit011e8332a90b018ad5f4283ddfb978b77028c3ab (patch)
tree3d47ffdfed909e53a269e94f1fdc358c53641d68 /usecaseui-portal/src
parent214d67b1555d4018c2189dd641aee27ed2b3e230 (diff)
bar component spec- added module dependency
Added NgxCharts module to imports Issue-ID: USECASEUI-280 Change-Id: I3847993b1420f037aaf4374eafb9490d8e332b14 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'usecaseui-portal/src')
-rw-r--r--usecaseui-portal/src/app/shared/components/charts/bar/bar.component.spec.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/shared/components/charts/bar/bar.component.spec.ts b/usecaseui-portal/src/app/shared/components/charts/bar/bar.component.spec.ts
index d979ffb6..eb048a29 100644
--- a/usecaseui-portal/src/app/shared/components/charts/bar/bar.component.spec.ts
+++ b/usecaseui-portal/src/app/shared/components/charts/bar/bar.component.spec.ts
@@ -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();
}));