| 38 | describe('FormControlDirective with FVC', () => { |
| 39 | it('should sync FormControl value to FVC (model -> view)', () => { |
| 40 | @Component({ |
| 41 | template: `<my-fvc-input [formControl]="ctrl" />`, |
| 42 | imports: [MyFvcInput, ReactiveFormsModule], |
| 43 | }) |
| 44 | class TestCmp { |
| 45 | ctrl = new FormControl('initial'); |
| 46 | } |
| 47 | |
| 48 | const fixture = act(() => TestBed.createComponent(TestCmp)); |
| 49 |