reset method

void reset()

Reset all mocks and return to normal mode

This is automatically called by Zen.reset() but can be called explicitly if needed.

Implementation

void reset() {
  ZenLogger.logDebug('🧪 Test Mode: Reset');
  // Clear query cache on reset
  ZenQueryCache.instance.clear();
  // Re-enable timers for production use
  ZenQueryCache.instance.configureForTesting(useRealTimers: true);
}