(millis: number = 0, ignoreNestedTimeout = false)
| 1032 | * @experimental |
| 1033 | */ |
| 1034 | export function tick(millis: number = 0, ignoreNestedTimeout = false): void { |
| 1035 | _getFakeAsyncZoneSpec().tick(millis, null, ignoreNestedTimeout); |
| 1036 | } |
| 1037 | |
| 1038 | /** |
| 1039 | * Simulates the asynchronous passage of time for the timers in the fakeAsync zone by |
searching dependent graphs…