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