| 2097 | describe('orphan components', () => { |
| 2098 | it('should display correct error message for orphan component if forbidOrphanRendering option is set', () => { |
| 2099 | @Component({ |
| 2100 | template: '...', |
| 2101 | standalone: false, |
| 2102 | }) |
| 2103 | class MainComp {} |
| 2104 | ɵsetClassDebugInfo(MainComp, { |
| 2105 | className: 'MainComp', |
| 2106 | filePath: 'test.ts', |
nothing calls this directly
no test coverage detected
searching dependent graphs…