Skip to content

Commit

Permalink
test: improved type checking with regex
Browse files Browse the repository at this point in the history
Replaced TypeError with a regular expression of the actual error.

PR-URL: #12591
Reviewed-By: Rich Trott <[email protected]>
Reviewed-By: Jeremiah Senkpiel <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Santiago Gimeno <[email protected]>
Reviewed-By: Gibson Fahnestock <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
coreybeaumont authored and evanlucas committed May 2, 2017
1 parent 3114349 commit 1a84f06
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/parallel/test-net-server-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -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$/);

0 comments on commit 1a84f06

Please sign in to comment.