| 4280 | |
| 4281 | it('synchronizes with a custom value control', () => { |
| 4282 | @Component({ |
| 4283 | selector: 'my-input', |
| 4284 | template: '<input #i [value]="value()" (input)="value.set(i.value)" />', |
| 4285 | }) |
| 4286 | class CustomInput implements FormValueControl<string> { |
| 4287 | value = model(''); |
| 4288 | } |
| 4289 | |
| 4290 | @Component({ |
| 4291 | imports: [FormField, CustomInput], |
nothing calls this directly
no test coverage detected
searching dependent graphs…