diff options
author | Indrijeet kumar <indriku1@in.ibm.com> | 2020-02-16 21:11:50 +0530 |
---|---|---|
committer | Indrijeet kumar <indriku1@in.ibm.com> | 2020-02-16 21:17:56 +0530 |
commit | 68bc281ad7274254e2fccd2f5c398037737722d1 (patch) | |
tree | d0d06185109f5462558bf7a426a3a74750c31d41 | |
parent | 93238af945c2ba85e0dd25226889422ca31cfc50 (diff) |
err in dashboard component resolved
error in dashboard component resolved
Issue-ID: PORTAL-813
Change-Id: I45c02b522411f72fcd9939bc5c46c044e13d9112
Signed-off-by: Indrijeet Kumar <indriku1@in.ibm.com>
-rw-r--r-- | ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/dashboard/dashboard.component.spec.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/dashboard/dashboard.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/dashboard/dashboard.component.spec.ts index 21423380..ba1583d8 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/dashboard/dashboard.component.spec.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/dashboard/dashboard.component.spec.ts @@ -4,6 +4,8 @@ import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { DashboardComponent } from './dashboard.component'; import { DashboardModule } from './dashboard.module'; +import { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from '@angular/core'; +import { HttpClientTestingModule } from '@angular/common/http/testing'; describe('DashboardComponent', () => { let component: DashboardComponent; @@ -15,6 +17,7 @@ describe('DashboardComponent', () => { DashboardModule, RouterTestingModule, BrowserAnimationsModule, + HttpClientTestingModule ] }) .compileComponents(); |