* Advances time forward to the next due timer until there are no pending timers remaining. * If the timers create additional timers, they will be run too. If there is an interval, * time will keep advancing forward until the interval is cleared. * Runs all pending microtasks before each tim
()
| 804 | * ``` |
| 805 | */ |
| 806 | async runAllAsync() { |
| 807 | while (!dueTree.isEmpty()) { |
| 808 | await this.nextAsync(); |
| 809 | } |
| 810 | } |
| 811 | |
| 812 | /** |
| 813 | * Restores time related global functions to their original state. |
no test coverage detected