Timeout - Async callback was not invoked within the 500000ms timeout specified by jest.setTimeout.
See original GitHub issueWhat is the current behavior?
I am getting Timeout - Async callback was not invoked within the 500000ms timeout specified by jest.setTimeout.
Please provide your exact Jest configuration
My testing is currently running inside docker container.
test
Issue Analytics
- State:
- Created 6 years ago
- Comments:6
Top Results From Across the Web
Message "Async callback was not invoked within the 5000 ms ...
In my case only putting jest.setTimeOut(10000) in describe helped me. Neither putting it inside test function body, nor specifying timeout as a test...
Read more >Async callback was not invoked within the 5000ms timeout not ...
Bug Report Jest is not showing which on which line the timeout is happening.
Read more >- Async callback was not invoked within the 5000ms timeout ...
Answers related to “- Async callback was not invoked within the 5000ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked within...
Read more >[Help] Timeout - Async callback was not invoked - Reddit
Timeout - Async callback was not invoked within the 5000 ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked ...
Read more >Async callback was not invoked within the 5000ms timeout ...
Got Timeout – Async callback was not invoked within the 5000ms timeout specified by jest.setTimeout. apijestjstestingweb-api-testing. I have problem with ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is not an actionable issue report. Please send a better description of what you want to achieve and provide a repro.
@thymikee I am facing a similar error message when running a Jest test:
Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
My test looks like this:
My assumption is the
Async callback
being referred to in the error must be something different from thedone
callback variable I’m passing to this test. How could I find out what theAsync callback
is referring to?