| 2413 | |
| 2414 | it('should render an error block when loading fails and cleanup the original content', async () => { |
| 2415 | @Component({ |
| 2416 | selector: 'nested-cmp', |
| 2417 | template: 'Rendering {{ block }} block.', |
| 2418 | }) |
| 2419 | class NestedCmp { |
| 2420 | @Input() block!: string; |
| 2421 | } |
| 2422 | |
| 2423 | @Component({ |
| 2424 | selector: 'app', |