| 40 | // Services, and components for the tests. |
| 41 | |
| 42 | @Component({ |
| 43 | selector: 'child-comp', |
| 44 | template: `<span>Original {{ childBinding }}</span>`, |
| 45 | standalone: false, |
| 46 | }) |
| 47 | @Injectable() |
| 48 | class ChildComp { |
| 49 | childBinding: string; |
| 50 | constructor() { |
| 51 | this.childBinding = 'Child'; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | @Component({ |
| 56 | selector: 'child-comp', |
nothing calls this directly
no test coverage detected
searching dependent graphs…