mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 16:34:41 +00:00

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>
18 lines
452 B
JavaScript
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));
|