()
| 1055 | * @experimental |
| 1056 | */ |
| 1057 | export function discardPeriodicTasks(): void { |
| 1058 | const zoneSpec = _getFakeAsyncZoneSpec(); |
| 1059 | const pendingTimers = zoneSpec.pendingPeriodicTimers; |
| 1060 | zoneSpec.pendingPeriodicTimers.length = 0; |
| 1061 | } |
| 1062 | |
| 1063 | /** |
| 1064 | * Wraps a function to be executed in a shared ProxyZone. |
no test coverage detected
searching dependent graphs…