()
| 55 | } |
| 56 | |
| 57 | async runAllTimersAsync(): Promise<void> { |
| 58 | if (this._checkFakeTimers()) { |
| 59 | await this._clock.runAllAsync(); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | runOnlyPendingTimers(): void { |
| 64 | if (this._checkFakeTimers()) { |
nothing calls this directly
no test coverage detected