()
| 337 | @Injectable() |
| 338 | class DelayedResolve { |
| 339 | resolve() { |
| 340 | return of('').pipe( |
| 341 | switchMap((v) => new Promise((r) => setTimeout(r, 10)).then(() => v)), |
| 342 | mapTo(true), |
| 343 | ); |
| 344 | } |
| 345 | } |
| 346 | @Component({ |
| 347 | selector: 'root-cmp', |
nothing calls this directly
no test coverage detected