summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/pages/role/role-functions/role-functions.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'portal-FE-common/src/app/pages/role/role-functions/role-functions.component.spec.ts')
-rw-r--r--portal-FE-common/src/app/pages/role/role-functions/role-functions.component.spec.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/portal-FE-common/src/app/pages/role/role-functions/role-functions.component.spec.ts b/portal-FE-common/src/app/pages/role/role-functions/role-functions.component.spec.ts
index ccefb8d2..8aa41e06 100644
--- a/portal-FE-common/src/app/pages/role/role-functions/role-functions.component.spec.ts
+++ b/portal-FE-common/src/app/pages/role/role-functions/role-functions.component.spec.ts
@@ -38,6 +38,10 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RoleFunctionsComponent } from './role-functions.component';
+import { FormsModule } from '@angular/forms';
+import { NgMaterialModule } from 'src/app/ng-material-module';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
+import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
describe('RoleFunctionsComponent', () => {
let component: RoleFunctionsComponent;
@@ -45,7 +49,8 @@ describe('RoleFunctionsComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ RoleFunctionsComponent ]
+ declarations: [ RoleFunctionsComponent ],
+ imports:[FormsModule,NgMaterialModule,HttpClientTestingModule,BrowserAnimationsModule],
})
.compileComponents();
}));