-
-
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
afterAll hide errors #9882
Comments
@evandrocoan I cannot reproduce this. Running the repl you provide it looks like what you outline in "Expected behavior". If you meant to have the error in Can you confirm? |
Yes. The code I had on const sum = require('./sum');
describe("Test question and answer audios", () => {
afterAll(async () => {
console.zupererror();
console.log("afterAll");
});
beforeAll(async () => {
console.log("beforeAll");
});
test('Timeout on the wrong place...', async () => {
expect(sum(1, 2)).toBe(3);
});
}); Which has an error on the |
Why was this closed? |
Because he said it will be fixed:
But I am reopening it until the fix is actually released. |
Thanks, I was confused because another thread said circus was going to be default in 25. Was elegantly surprised to see that jasmine was still the default in 26. I can personally report that jest-circus has fixed this issue for me. |
Related: #9368 |
So what would be the procedure to fix this behavior at the moment? @chasen-bettinger mind to share? Do I simply need to install |
Follow the |
This comment has been minimized.
This comment has been minimized.
feel free to send a PR. Or use |
This issue is stale because it has been open for 1 year with no activity. Remove stale label or comment or this will be closed in 30 days. |
This issue was closed because it has been stalled for 30 days with no activity. Please open a new issue if the issue is still relevant, linking to this one. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
🐛 Bug Report
https://repl.it/@evandrocoan/EnviousMagnificentApplicationpackage
Actual behavior
Expected behavior
envinfo
Related:
The text was updated successfully, but these errors were encountered: