| 230 | |
| 231 | it('should support two-way binding to signal input and @Output decorated member', () => { |
| 232 | @Directive({selector: '[dir]'}) |
| 233 | class Dir { |
| 234 | value = input(0); |
| 235 | @Output() valueChange = new EventEmitter<number>(); |
| 236 | } |
| 237 | |
| 238 | @Component({ |
| 239 | template: '<div [(value)]="value" dir></div>', |