* Resets the mock tracker, restoring all mocks and clearing timers.
()
| 735 | * Resets the mock tracker, restoring all mocks and clearing timers. |
| 736 | */ |
| 737 | reset() { |
| 738 | this.restoreAll(); |
| 739 | this.#timers?.reset(); |
| 740 | this.#mocks = []; |
| 741 | } |
| 742 | |
| 743 | /** |
| 744 | * Restore all mocks created by this MockTracker instance. |