Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-dgram-regress-4496.js « parallel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4ec8195d7e7f0706d071eba9172a8b2a14b0128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'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();