()
| 673 | thing = 'initial'; |
| 674 | cdr = inject(ChangeDetectorRef); |
| 675 | ngAfterViewInit() { |
| 676 | queueMicrotask(() => { |
| 677 | this.thing = 'new'; |
| 678 | this.cdr.markForCheck(); |
| 679 | }); |
| 680 | } |
| 681 | } |
| 682 | const fixture = TestBed.createComponent(App); |
| 683 | await new Promise<void>((resolve) => scheduleCallbackWithRafRace(resolve)); |
nothing calls this directly
no test coverage detected