Diego Fleury
Diego Fleury
Still occuring with jest 25.1.0. I'm starting a http server and waiting the `server.listen()` callback to be called to resolve the promise and ensure the server is able to receive...
Seems I've found a workaround here. Since I wrapped my test case and hooks with a `describe` function, seems that jest is now respecting the async `beforeAll`.
I guess the problem in your example is you're never resolving the promise and the global timeout is firing because of that. What I've catched here is similar but different...