()
| 154 | (Zone as any).patchJestObject = function patchJestObject(Timer: any, isModern = false) { |
| 155 | // check whether currently the test is inside fakeAsync() |
| 156 | function isPatchingFakeTimer() { |
| 157 | const fakeAsyncZoneSpec = Zone.current.get('FakeAsyncTestZoneSpec'); |
| 158 | return !!fakeAsyncZoneSpec; |
| 159 | } |
| 160 | |
| 161 | // check whether the current function is inside `test/it` or other methods |
| 162 | // such as `describe/beforeEach` |