-
Notifications
You must be signed in to change notification settings - Fork 31k
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: fix test-eventtarget #33670
test: fix test-eventtarget #33670
Conversation
Event#cancelBubble is property (and not a function). Change Event#cancelBubble to a property and add a test. PR-URL: nodejs#33613 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]>
PR-URL: nodejs#33618 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
PR-URL: nodejs#33615 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Zeyu Yang <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]>
PR-URL: nodejs#33623 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
@lundibundi I made a mess landing a PR by mistake and force-pushed. @BridgeAR is currently helping me figure out what went wrong. Anyway, LGTM and 👍 to fast track. |
Seems like this test just landed about an hour ago and there is another issue on master right now. I am going to force push these out, if no one is against that? |
I am fine with either landing this or the force push. As NodeEventTarget is likely to be removed soon anyway. |
Closing as these are not on master anymore. |
Thanks for opening the fix though! |
Well, it looks like the |
I'm not sure I understand the issue with 8ae28ff does it fail CI or is otherwise problematic? |
@lundibundi thanks, it's now also reverted. I reopened all corresponding PRs and I am looking into PRs that might have been worked on in the meanwhile and check that everything is in order for them right now. |
@benjamingr it failed a test. Even if the CI was originally green, something that landed intermediately since the last CI run could have caused the new code to fail / cause issues with other code. |
That commit adds a check for no-arg @BridgeAR @benjamingr great, then it should be okay. |
Ok, I just checked and everything seems to be in good shape. The good part is that it's a very new code part that no one else was working on right now. |
Looks like this slipped through while lending #33611 and #33622 due to the 'old' (3 days) CI.
The NodeEventTarget target test at the end of a file fails with
But since it is being removed anyway (#33665) I decided to just delete it.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes/cc @benjamingr @jasnell @nodejs/events