Skip to content

Commit

Permalink
test: validate error message from buffer.equals
Browse files Browse the repository at this point in the history
Adding regular expression as an argument to an assert.throws().

PR-URL: #11215
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
  • Loading branch information
Sebastian Roeder authored and hiroppy committed Feb 11, 2017
1 parent b32ae9e commit f8cdaaa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/parallel/test-buffer-equals.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ assert.ok(!d.equals(e));
assert.ok(d.equals(d));
assert.ok(d.equals(new Uint8Array([0x61, 0x62, 0x63, 0x64, 0x65])));

assert.throws(() => Buffer.alloc(1).equals('abc'));
assert.throws(() => Buffer.alloc(1).equals('abc'),
/^TypeError: Argument must be a Buffer or Uint8Array$/);

0 comments on commit f8cdaaa

Please sign in to comment.