-
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
[v18.x backport] test_runner: avoid swallowing of asynchronously thrown errors #46005
Closed
fossamagna
wants to merge
3
commits into
nodejs:v18.x-staging
from
fossamagna:backport-v18-test-runner-extraneous-async-fail
Closed
[v18.x backport] test_runner: avoid swallowing of asynchronously thrown errors #46005
fossamagna
wants to merge
3
commits into
nodejs:v18.x-staging
from
fossamagna:backport-v18-test-runner-extraneous-async-fail
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Review requested:
|
nodejs-github-bot
added
dont-land-on-v14.x
needs-ci
PRs that need a full CI run.
test_runner
Issues and PRs related to the test runner subsystem.
v18.x
Issues that can be reproduced on v18.x or PRs targeting the v18.x-staging branch.
labels
Dec 29, 2022
MoLow
approved these changes
Dec 29, 2022
This was referenced Dec 31, 2022
danielleadams
force-pushed
the
v18.x-staging
branch
from
January 3, 2023 15:48
68cca1e
to
2098d7a
Compare
20 tasks
danielleadams
force-pushed
the
v18.x-staging
branch
from
January 4, 2023 17:10
2098d7a
to
bac6b7d
Compare
22 tasks
Hey! Thanks for this patch. Would you mind rebasing this? |
According to https://html.spec.whatwg.org/#environment-settings-object, the timeOrigin is a per-environment value. Worker's timeOrigin is the time when the worker is created. PR-URL: nodejs#43781 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
To distinguish per-context values from the node::Environment, split those values to a new node::Realm structure and consolidate bootstrapping methods with it. PR-URL: nodejs#44179 Refs: nodejs#42528 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: James M Snell <[email protected]>
Fixes: nodejs#44612 PR-URL: nodejs#45264 Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
fossamagna
force-pushed
the
backport-v18-test-runner-extraneous-async-fail
branch
from
January 23, 2023 01:30
6bba8f9
to
024450a
Compare
@juanarbol Thanks. I rebased and pushed this PR. |
MoLow
added
request-ci
Add this label to start a Jenkins CI on a PR.
and removed
request-ci
Add this label to start a Jenkins CI on a PR.
labels
Jan 24, 2023
the rebase did not seem to be successful, so I am closing in favor of #46360 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
needs-ci
PRs that need a full CI run.
test_runner
Issues and PRs related to the test runner subsystem.
v18.x
Issues that can be reproduced on v18.x or PRs targeting the v18.x-staging branch.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This RP is backport of #45264 to v18.x.
Refs: #45264 (comment)