| 24 | describe('FieldState focus behavior', () => { |
| 25 | it('should focus a native control', async () => { |
| 26 | @Component({ |
| 27 | imports: [FormField], |
| 28 | template: `<input [formField]="f" />`, |
| 29 | }) |
| 30 | class TestCmp { |
| 31 | readonly f = form(signal('')); |
| 32 | } |
| 33 | |
| 34 | const fixture = await act(() => TestBed.createComponent(TestCmp)); |
| 35 | const input = fixture.nativeElement.firstChild; |
nothing calls this directly
no test coverage detected