| 125 | |
| 126 | it('synchronizes value', () => { |
| 127 | @Component({ |
| 128 | imports: [CustomControl, FormField], |
| 129 | template: `<custom-control [formField]="f" />`, |
| 130 | }) |
| 131 | class TestCmp { |
| 132 | readonly f = form(signal('test')); |
| 133 | readonly control = viewChild.required(CustomControl); |
| 134 | } |
| 135 | |
| 136 | const fixture = act(() => TestBed.createComponent(TestCmp)); |
| 137 | const control = fixture.componentInstance.control; |
nothing calls this directly
no test coverage detected
searching dependent graphs…