Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/fuchsia
/
.
/
test
/
parallel
/
test-net-connect-destroy.js
blob: 73fdb988f9ca839722132f488f6c8ba9f147c414 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
const
common
=
require
(
'../common'
);
const
net
=
require
(
'net'
);
const
socket
=
new
net
.
Socket
();
socket
.
on
(
'close'
,
common
.
mustCall
());
socket
.
destroy
();