(ngZone: NgZone)
| 61 | }) |
| 62 | class Cmp { |
| 63 | constructor(ngZone: NgZone) { |
| 64 | effect(() => { |
| 65 | log.push(Zone.current.name); |
| 66 | }); |
| 67 | |
| 68 | ngZone.runOutsideAngular(() => { |
| 69 | effect(() => { |
| 70 | log.push(Zone.current.name); |
| 71 | }); |
| 72 | }); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | await bootstrapApplication(Cmp); |
nothing calls this directly
no test coverage detected