-
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: string to template literals, to include port #20889
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,11 @@ if (cluster.isMaster) { | |
const worker1 = cluster.fork(); | ||
|
||
worker1.on('message', function(port1) { | ||
assert.strictEqual(port1, port1 | 0, 'first worker could not listen'); | ||
assert.strictEqual(port1, port1 | 0, `first worker could not listen on port ${port1}`); | ||
const worker2 = cluster.fork(); | ||
|
||
worker2.on('message', function(port2) { | ||
assert.strictEqual(port2, port2 | 0, 'second worker could not listen'); | ||
assert.strictEqual(port2, port2 | 0, `second worker could not listen on port ${port2}`); | ||
assert.notStrictEqual(port1, port2, 'ports should not be equal'); | ||
worker1.kill(); | ||
worker2.kill(); | ||
|
@@ -28,7 +28,7 @@ if (cluster.isMaster) { | |
|
||
server.listen({ | ||
port: 0, | ||
exclusive: true | ||
exclusive: true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: please remove the comma here since it's an unrelated change. Thanks! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comma is still here after the update. As it's not related to this PR, could you please remove it? |
||
}, function() { | ||
process.send(server.address().port); | ||
}); | ||
|
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 will fail the linter, unfortunately. Same above.
You could instead realign like so:
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.
The alternative would be to just remove the message altogether and instead show the default error message. That would also be fine with me.
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.
I went ahead and removed it.