summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/layout/components/search-users/search-users.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'portal-FE-common/src/app/layout/components/search-users/search-users.component.spec.ts')
-rw-r--r--portal-FE-common/src/app/layout/components/search-users/search-users.component.spec.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/portal-FE-common/src/app/layout/components/search-users/search-users.component.spec.ts b/portal-FE-common/src/app/layout/components/search-users/search-users.component.spec.ts
index 66a966cf..9db3e395 100644
--- a/portal-FE-common/src/app/layout/components/search-users/search-users.component.spec.ts
+++ b/portal-FE-common/src/app/layout/components/search-users/search-users.component.spec.ts
@@ -39,6 +39,9 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SearchUsersComponent } from './search-users.component';
+import { NgMaterialModule } from 'src/app/ng-material-module';
+import { FormsModule } from '@angular/forms';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
describe('SearchUsersComponent', () => {
let component: SearchUsersComponent;
@@ -46,7 +49,8 @@ describe('SearchUsersComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ SearchUsersComponent ]
+ declarations: [ SearchUsersComponent ],
+ imports: [FormsModule,NgMaterialModule,HttpClientTestingModule]
})
.compileComponents();
}));