| 1626 | describe('transplanted views', () => { |
| 1627 | it('should work when passing TemplateRef to a different component', async () => { |
| 1628 | @Component({ |
| 1629 | imports: [CommonModule], |
| 1630 | selector: 'insertion-component', |
| 1631 | template: ` <ng-container [ngTemplateOutlet]="template"></ng-container> `, |
| 1632 | }) |
| 1633 | class InsertionComponent { |
| 1634 | @Input() template!: TemplateRef<unknown>; |
| 1635 | } |
| 1636 | |
| 1637 | @Component({ |
| 1638 | selector: 'app', |