-
Notifications
You must be signed in to change notification settings - Fork 26
Investigate why jest
exits immediately, since a socket pool is created
#7
Comments
Just had this problem the other day - it was an async/await issue. May be unrelated, but I remember wondering the same thing. Let's make sure we're using promises correctly and not missing some async keyword or something |
It's possible to call |
The solution I've used in the past is a timeout promise that either times out and rejects, or otherwise allows you to mark something as resolved by exposing the resolver function. I've noticed this be a problem with the |
Thank you for the report. We are archiving this project; you can read more details here: #83 |
I don't know why
jest
is so fast at quitting if sockets should be remaining open with the introduction ofagentkeepalive
The text was updated successfully, but these errors were encountered: