test: improved type checking with regex
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>
This commit is contained in:
parent
b65d5e447b
commit
e8004dbdd5
@ -3,5 +3,7 @@ require('../common');
|
||||
const assert = require('assert');
|
||||
const net = require('net');
|
||||
|
||||
assert.throws(function() { net.createServer('path'); }, TypeError);
|
||||
assert.throws(function() { net.createServer(0); }, TypeError);
|
||||
assert.throws(function() { net.createServer('path'); },
|
||||
/^TypeError: options must be an object$/);
|
||||
assert.throws(function() { net.createServer(0); },
|
||||
/^TypeError: options must be an object$/);
|
||||
|
Loading…
x
Reference in New Issue
Block a user