-
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: remove common module from test it thwarts #13748
Conversation
|
||
process.on('warning', function(warning) { | ||
process.on('warning', (warning) => { |
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.
Nit: I would remove the warning
argument as it is not used. Also there is no guarantee that this listener is called. Should we assert that in a process.on('exit')
listener?
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.
@lpinca Ack, done on both.
test-global-console-exists cannot use the common module as explained in a comment but it was included later anyway. This change removes it.
Sole CI failure is unrelated flaky test. |
test-global-console-exists cannot use the common module as explained in a comment but it was included later anyway. This change removes it. PR-URL: nodejs#13748 Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
Landed in 4885982 |
test-global-console-exists cannot use the common module as explained in a comment but it was included later anyway. This change removes it. PR-URL: #13748 Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
test-global-console-exists cannot use the common module as explained in
a comment but it was included later anyway. This change removes it.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
test console