Open Anoerak opened 7 months ago
That's due to Safetest not waiting for the docker container to stop before the tests are officially done. This speeds up testing by however many seconds it takes for docker to close those per test file. Perhaps we can nohup those when the tests finish. I'm open to a PR if you want to do that. The current message is just a red herring and shouldn't affect anything
@Anoerak Did you mean without that change Jest doesn't close at all? If so can you create a repro case?
Hi, Sorry, I've been working on something else for the past weeks. Thanks for your answer. Let me get back into this project and I'll keep you updated.
Hello,
I've been running into an issue where an open handle prevented Jest to close.
The quick fix for now is to add a
jest.teardown,js
file with this snippet:More details about the config:
And the message from the console:
If need anything else, please let me know.
Thank you.