-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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: replace forEach() in test-net-perf_hooks with for of #49831
test: replace forEach() in test-net-perf_hooks with for of #49831
Conversation
518342d
to
1de9402
Compare
1de9402
to
c3cdaa7
Compare
hi @lpinca and @trivikr, thanks for approving this PR! Would you be able to point me to what the next steps would be to move it forward? This is my first contribution to node and I'm not sure how to go about landing the PR and merging it (https://github.com/nodejs/node/blob/main/doc/contributing/pull-requests.md#step-10-landing) |
Hi @tniessen let me know if you have any advice on the next steps to move the PR forward. This was part of the Open Source Day event for GHC. Much appreciated, thanks! |
@narcisacodreanu Apologies for the delay on our end. Once CI passes (which might take a while), this is good to go! |
This comment was marked as outdated.
This comment was marked as outdated.
Landed in 2fe511b |
Thank you for the contribution @narcisacodreanu! |
Yaay, thank you for your help @tniessen!! |
PR-URL: nodejs#49831 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Joe Sepi <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
PR-URL: #49831 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Joe Sepi <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
PR-URL: nodejs#49831 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Joe Sepi <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
Removes the use of
forEach()
intest-net-perf_hooks.js
by replacing it withfor ... of
(Part of Open Source Day at GHC 2023)