| 419 | describe('invalid host element', () => { |
| 420 | it('should throw when <ng-container> is used as a host element for a Component', () => { |
| 421 | @Component({ |
| 422 | selector: 'ng-container', |
| 423 | template: '...', |
| 424 | standalone: false, |
| 425 | }) |
| 426 | class Comp {} |
| 427 | |
| 428 | @Component({ |
| 429 | selector: 'root', |
nothing calls this directly
no test coverage detected
searching dependent graphs…