]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
db93615cd94772c93e44f7493978333d9423e021
[ceph.git] /
1 import { Component } from '@angular/core';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { FormGroup } from '@angular/forms';
4 import { FormlyFieldConfig, FormlyModule } from '@ngx-formly/core';
5
6 import { FormlyInputWrapperComponent } from './formly-input-wrapper.component';
7
8 @Component({
9   template: ` <form [formGroup]="form">
10     <formly-form [model]="{}" [fields]="fields" [options]="{}" [form]="form"></formly-form>
11   </form>`
12 })
13 class MockFormComponent {
14   form = new FormGroup({});
15   fields: FormlyFieldConfig[] = [
16     {
17       wrappers: ['input'],
18       defaultValue: {}
19     }
20   ];
21 }
22
23 describe('FormlyInputWrapperComponent', () => {
24   let component: MockFormComponent;
25   let fixture: ComponentFixture<MockFormComponent>;
26
27   beforeEach(async () => {
28     await TestBed.configureTestingModule({
29       declarations: [FormlyInputWrapperComponent],
30       imports: [
31         FormlyModule.forRoot({
32           types: [{ name: 'input', component: FormlyInputWrapperComponent }]
33         })
34       ]
35     }).compileComponents();
36   });
37
38   beforeEach(() => {
39     fixture = TestBed.createComponent(MockFormComponent);
40     component = fixture.componentInstance;
41     fixture.detectChanges();
42   });
43
44   it('should create', () => {
45     expect(component).toBeTruthy();
46   });
47 });