Skip to content
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: add a test for Server. listen callback runtime binding #35657

Closed
wants to merge 4 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/parallel/test-http-pause.js
Expand Up @@ -47,9 +47,9 @@ const server = http.createServer((req, res) => {
}, 100);
});

server.listen(0, function() {
server.listen(0, () => {
adinhtdsibm marked this conversation as resolved.
Show resolved Hide resolved
const req = http.request({
port: this.address().port,
port: server.address().port,
adinhtdsibm marked this conversation as resolved.
Show resolved Hide resolved
path: '/',
method: 'POST'
}, (res) => {
Expand Down