mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 14:56:19 +00:00

PR-URL: https://github.com/nodejs/node/pull/13726 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
23 lines
457 B
JavaScript
23 lines
457 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
const assert = require('assert');
|
|
|
|
{
|
|
const fp = '/tmp/fadagagsdfgsdf';
|
|
const c = net.connect(fp);
|
|
|
|
c.on('connect', common.mustNotCall());
|
|
c.on('error', common.expectsError({
|
|
code: 'ENOENT',
|
|
message: `connect ENOENT ${fp}`
|
|
}));
|
|
}
|
|
|
|
{
|
|
assert.throws(
|
|
() => net.createConnection({ path: {} }),
|
|
common.expectsError({ code: 'ERR_INVALID_ARG_TYPE' })
|
|
);
|
|
}
|