* Advances all timers by `msToRun` milliseconds. All pending "macro-tasks" * that have been queued via `setTimeout()` or `setInterval()`, and would be * executed within this time frame will be executed.
(msToRun: number | TemporalDurationLike)
| 65 | * executed within this time frame will be executed. |
| 66 | */ |
| 67 | advanceTimersByTime(msToRun: number | TemporalDurationLike): void; |
| 68 | /** |
| 69 | * Advances all timers by `msToRun` milliseconds, firing callbacks if necessary. |
| 70 | * |
no outgoing calls
no test coverage detected