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
Since node.js 15, there is a global MessageChannel object now, which prevents node event loop from exiting. To let the process shut down properly, it should either call port.close() or port.unref()
This becomes an issue when testing React code within JSDOM environment, as the test process cannot exit properly.
The current behavior
The process with JSDOM tests never finishes
The expected behavior
The process finishes properly
jansiegel, amensum, pimkle, shepmaster and dante01yoonfregante