mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 03:12:57 +00:00

Replaced TypeError with a regular expression of the actual error. PR-URL: https://github.com/nodejs/node/pull/12591 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
10 lines
320 B
JavaScript
10 lines
320 B
JavaScript
'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$/);
|