diff options
author | xu ran <xuranyjy@chinamobile.com> | 2019-11-26 09:41:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-26 09:41:16 +0000 |
commit | 13dc1b50698b8b694f7b42341c0d7ed421887d0d (patch) | |
tree | 979fecf82b6e9593b24f7c1f64dbc1f5f5b34330 /usecaseui-portal/src/app/shared/components/charts | |
parent | d1c12b28674c42d8f17aedae8812f2ccec706437 (diff) | |
parent | 011e8332a90b018ad5f4283ddfb978b77028c3ab (diff) |
Merge "bar component spec- added module dependency"
Diffstat (limited to 'usecaseui-portal/src/app/shared/components/charts')
-rw-r--r-- | usecaseui-portal/src/app/shared/components/charts/bar/bar.component.spec.ts | 4 |
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(); })); |