You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: clean up setTimeout timers in MockEventSource to prevent test hangs
The MockEventSource was creating setTimeout calls that weren't being cleaned up.
These orphaned timers kept the Node.js event loop alive, causing the test suite
to hang with a 30+ second timeout. Now we track all timeout IDs and clear them
in the close() method to ensure proper cleanup.
0 commit comments