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
The worker pool was causing Jest to hang because the worker thread
prevented Node from exiting. Using unref() allows Node to exit even
if the worker is still running, which is safe since the worker is
lazily created and terminated on app quit.
This fixes the integration test failures where tests would timeout
waiting for the process to exit.
0 commit comments