-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
test_runner: fix global after hook #48231
Conversation
Review requested:
|
@cjihrig I just pushed a fix making root test use |
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.
this meant I had to adjust run to be 100% synchronous in cases we use it for the root test
run()
can't be 100% synchronous - it's an async function.
I guess there are no implications since the tests seem to pass, but don't we call root.postRun()
in runner.js? Should we be calling root.run()
there instead now?
well in |
Landed in 5e98a74 |
PR-URL: nodejs#48231 Fixes: nodejs#48230 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
PR-URL: nodejs#48231 Fixes: nodejs#48230 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
PR-URL: nodejs#48231 Fixes: nodejs#48230 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
PR-URL: nodejs#48231 Fixes: nodejs#48230 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Fixes: #48230