| 1130 | describe('ViewContainerRef', () => { |
| 1131 | it('should work with ViewContainerRef.createComponent', async () => { |
| 1132 | @Component({ |
| 1133 | selector: 'dynamic', |
| 1134 | template: ` <span>This is a content of a dynamic component.</span> `, |
| 1135 | }) |
| 1136 | class DynamicComponent {} |
| 1137 | |
| 1138 | @Component({ |
| 1139 | selector: 'app', |
nothing calls this directly
no test coverage detected