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