| 102 | describe('FormCheckboxControl', () => { |
| 103 | it(`synchronizes value from '[formField]' binding`, async () => { |
| 104 | @Component({template: ''}) |
| 105 | class CustomCheckbox implements FormCheckboxControl { |
| 106 | readonly checked = model.required<boolean>(); |
| 107 | } |
| 108 | |
| 109 | const environmentInjector = TestBed.inject(EnvironmentInjector); |
| 110 | const control = TestBed.runInInjectionContext(() => form(signal(true))); |