| 4299 | |
| 4300 | it('synchronizes with a custom value control', () => { |
| 4301 | @Component({ |
| 4302 | selector: 'my-input', |
| 4303 | template: '<input #i [value]="value()" (input)="value.set(i.value)" />', |
| 4304 | }) |
| 4305 | class CustomInput implements FormValueControl<string> { |
| 4306 | value = model(''); |
| 4307 | } |
| 4308 | |
| 4309 | @Component({ |
| 4310 | imports: [FormField, CustomInput], |