()
| 137 | constructor(private appRef: ApplicationRef) {} |
| 138 | |
| 139 | reenter() { |
| 140 | if (this.reenterCount--) { |
| 141 | try { |
| 142 | this.appRef.tick(); |
| 143 | } catch (e) { |
| 144 | this.reenterErr = e; |
| 145 | } |
| 146 | } |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | const fixture = TestBed.configureTestingModule({ |