-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: explicitly mention that test is failing because done()
is not being called
#13847
Conversation
packages/jest-circus/src/utils.ts
Outdated
`Exceeded timeout of ${formatTime(timeout)} for a ${ | ||
isHook ? 'hook' : 'test' | ||
}${ | ||
takesDoneCallback && ' while waiting for done to be called' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps? Not 100% sure how to make it more clear what "done" is?
takesDoneCallback && ' while waiting for done to be called' | |
takesDoneCallback && ' while waiting for `done()` to be called' |
packages/jest-circus/src/utils.ts
Outdated
@@ -195,7 +201,7 @@ export const callAsyncCircusFn = ( | |||
|
|||
return new Promise<void>((resolve, reject) => { | |||
timeoutID = setTimeout( | |||
() => reject(_makeTimeoutMessage(timeout, isHook)), | |||
() => reject(_makeTimeoutMessage(timeout, isHook, takesDoneCallback(fn))), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extract takesDoneCallback(fn)
- no need to call it twice
e2e/__tests__/timeouts.test.ts
Outdated
const {stderr, exitCode} = runJest(DIR, ['-w=1', '--ci=false']); | ||
const {rest, summary} = extractSummary(stderr); | ||
expect(rest).toMatch( | ||
/(jest\.setTimeout|jasmine\.DEFAULT_TIMEOUT_INTERVAL|Exceeded timeout\.while waiting for done to be called)/, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does jasmine have the same message? I can't find it grepping for it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
fix #13844
Summary
If a test fails because
done()
is not called it's now specified in the error message.Example of new message:
Exceeded timeout of 5000 ms for a test while waiting for done to be called
.