summaryrefslogtreecommitdiff
path: root/test/parallel/test-net-connect-after-destroy.js
blob: 6697cf8e32f8e4035f6419139b9cb4e6ace62581 (plain)
1
2
3
4
5
6
7
8
9
'use strict';
// Regression test for https://github.com/nodejs/node-v0.x-archive/issues/819.

require('../common');
const net = require('net');

// Connect to something that we need to DNS resolve
const c = net.createConnection(80, 'google.com');
c.destroy();