test: remove assert.doesNotThrow()

There is actually no reason to use `assert.doesNotThrow()` in the
tests. If a test throws, just let the error bubble up right away
instead of first catching it and then rethrowing it.

PR-URL: https://github.com/nodejs/node/pull/18669
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
This commit is contained in:
Ruben Bridgewater 2018-02-09 02:32:04 +01:00
parent 4d3c3f039a
commit caee112e52
No known key found for this signature in database
GPG key ID: F07496B3EB3C1762
124 changed files with 598 additions and 1012 deletions

View file

@ -26,4 +26,4 @@ assert.deepStrictEqual(arr_buf, ar_buf);
assert.strictEqual(Buffer.byteLength(sab), sab.byteLength);
assert.doesNotThrow(() => Buffer.from({ buffer: sab }));
Buffer.from({ buffer: sab });