| 2132 | describe('orphan components', () => { |
| 2133 | it('should display correct error message for orphan component if forbidOrphanRendering option is set', () => { |
| 2134 | @Component({ |
| 2135 | template: '...', |
| 2136 | standalone: false, |
| 2137 | }) |
| 2138 | class MainComp {} |
| 2139 | ɵsetClassDebugInfo(MainComp, { |
| 2140 | className: 'MainComp', |
| 2141 | filePath: 'test.ts', |
nothing calls this directly
no test coverage detected