nodejs/test/parallel/test-net-end-without-connect.js

7 lines
130 B
JavaScript
Raw Normal View History

'use strict';
require('../common');
const net = require('net');
2012-12-25 22:05:06 +01:00
const sock = new net.Socket();
2012-12-25 22:05:06 +01:00
sock.end(); // Should not throw.