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