blob: b687cd5ef58bbe2227212e69fdce43b5e1e51cc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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;
let fixture: ComponentFixture<UserDetailsFormComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ UserDetailsFormComponent ],
imports:[HttpClientTestingModule,FormsModule,ReactiveFormsModule,NgMaterialModule,BrowserAnimationsModule],
providers:[NgbActiveModal]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(UserDetailsFormComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
|