| 1229 | describe('bindings', () => { |
| 1230 | it('should be able to bind to inputs', () => { |
| 1231 | @Component({template: ''}) |
| 1232 | class TestComp { |
| 1233 | @Input() value = 0; |
| 1234 | } |
| 1235 | |
| 1236 | const value = signal(1); |
| 1237 | const fixture = TestBed.createComponent(TestComp, { |