| 171 | |
| 172 | it(`should not treat component with '[formField]' input as a control`, async () => { |
| 173 | @Component({template: ''}) |
| 174 | class TestCmp { |
| 175 | readonly formField = input.required<Field<string>>(); |
| 176 | readonly value = model.required<string>(); |
| 177 | } |
| 178 | |
| 179 | const environmentInjector = TestBed.inject(EnvironmentInjector); |
| 180 | const control = TestBed.runInInjectionContext(() => { |