node/test/parallel/test-net-timeout-no-handle.js
Ruben Bridgewater 50dd555910
doc,lib,test: capitalize comment sentences
This activates the eslint capitalize comment rule for comments
above 50 characters.

PR-URL: https://github.com/nodejs/node/pull/24996
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-12-17 17:14:35 +01:00

18 lines
452 B
JavaScript

'use strict';
const common = require('../common');
const net = require('net');
const assert = require('assert');
const socket = new net.Socket();
socket.setTimeout(common.platformTimeout(50));
socket.on('timeout', common.mustCall(() => {
assert.strictEqual(socket._handle, null);
}));
socket.on('connect', common.mustNotCall());
// Since the timeout is unrefed, the code will exit without this
setTimeout(() => {}, common.platformTimeout(200));