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

7 lines
126 B
JavaScript
Raw Normal View History

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