mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 00:42:10 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
13 lines
402 B
JavaScript
13 lines
402 B
JavaScript
'use strict';
|
|
// Remove this test once we support sending strings.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
|
|
// Should throw but not crash.
|
|
const socket = dgram.createSocket('udp4');
|
|
assert.throws(function() { socket.send(true, 0, 1, 1, 'host'); }, TypeError);
|
|
assert.throws(function() { socket.sendto(5, 0, 1, 1, 'host'); }, TypeError);
|
|
socket.close();
|