summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/src/app/pages/users/user-details-form/user-details-form.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'portal-FE-os/src/app/pages/users/user-details-form/user-details-form.component.spec.ts')
-rw-r--r--portal-FE-os/src/app/pages/users/user-details-form/user-details-form.component.spec.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/portal-FE-os/src/app/pages/users/user-details-form/user-details-form.component.spec.ts b/portal-FE-os/src/app/pages/users/user-details-form/user-details-form.component.spec.ts
index 3262174f..b687cd5e 100644
--- a/portal-FE-os/src/app/pages/users/user-details-form/user-details-form.component.spec.ts
+++ b/portal-FE-os/src/app/pages/users/user-details-form/user-details-form.component.spec.ts
@@ -1,6 +1,11 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { UserDetailsFormComponent } from './user-details-form.component';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
+import { FormsModule, ReactiveFormsModule } from '@angular/forms';
+import { NgMaterialModule } from 'src/app/ng-material-module';
+import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
+import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
describe('UserDetailsFormComponent', () => {
let component: UserDetailsFormComponent;
@@ -8,7 +13,9 @@ describe('UserDetailsFormComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ UserDetailsFormComponent ]
+ declarations: [ UserDetailsFormComponent ],
+ imports:[HttpClientTestingModule,FormsModule,ReactiveFormsModule,NgMaterialModule,BrowserAnimationsModule],
+ providers:[NgbActiveModal]
})
.compileComponents();
}));