| 142 | describe('host directive mapping', () => { |
| 143 | it('should bind to a host directive that maps state/stateChange to value/valueChange', () => { |
| 144 | @Directive() |
| 145 | class MyStateDir { |
| 146 | readonly state = model.required<string>(); |
| 147 | } |
| 148 | |
| 149 | @Component({ |
| 150 | selector: 'custom-control', |