To whom it may concern,
I am in the middle of upgrading our Angular 19 application to use standalone components, but am getting problems with component tests for every component using reactiveforms.
As a minimal example, in the html, I have the following:
<ix-input formContrrolName="username" />
The component builds the formControl via FormBuilder, like so:
this.fb.group(
...
username: ['', [Validators.required]]
)
The component tests for the angular component the form is in then emiting:
No value accessor for form control name: 'username'.
How can I fix this issue? Is this an ix problem, or a test setup problem?