Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-net-end-without-connect.js « parallel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99324b071d27d665504d46a74cc7d923052af15e (plain)
1
2
3
4
5
6
'use strict';
require('../common');
const net = require('net');

const sock = new net.Socket();
sock.end();  // Should not throw.