| 1272 | @Input() svgIcon: any = ''; |
| 1273 | } |
| 1274 | @Component({ |
| 1275 | template: `<my-icon svgIcon="test"></my-icon>`, |
| 1276 | standalone: false, |
| 1277 | }) |
| 1278 | class App {} |
| 1279 | |
| 1280 | TestBed.configureTestingModule({declarations: [App, Icon]}); |
| 1281 | const fixture = TestBed.createComponent(App); |
nothing calls this directly
no test coverage detected