nodejs/test/parallel/test-net-server-options.js

10 lines
320 B
JavaScript
Raw Normal View History

'use strict';
require('../common');
const assert = require('assert');
const net = require('net');
assert.throws(function() { net.createServer('path'); },
/^TypeError: options must be an object$/);
assert.throws(function() { net.createServer(0); },
/^TypeError: options must be an object$/);