mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
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:
@@ -6,7 +6,6 @@ const fixtures = require('../common/fixtures');
|
||||
if (!common.hasCrypto)
|
||||
common.skip('missing crypto');
|
||||
|
||||
const assert = require('assert');
|
||||
const https = require('https');
|
||||
|
||||
function toArrayBuffer(buf) {
|
||||
@@ -65,11 +64,9 @@ const invalidCertRE = /^The "cert" argument must be one of type string, Buffer,
|
||||
[[{ pem: keyBuff }], false],
|
||||
[[{ pem: keyBuff }, { pem: keyBuff }], false]
|
||||
].forEach((params) => {
|
||||
assert.doesNotThrow(() => {
|
||||
https.createServer({
|
||||
key: params[0],
|
||||
cert: params[1]
|
||||
});
|
||||
https.createServer({
|
||||
key: params[0],
|
||||
cert: params[1]
|
||||
});
|
||||
});
|
||||
|
||||
@@ -124,12 +121,10 @@ const invalidCertRE = /^The "cert" argument must be one of type string, Buffer,
|
||||
[keyBuff, certBuff, caArrDataView],
|
||||
[keyBuff, certBuff, false],
|
||||
].forEach((params) => {
|
||||
assert.doesNotThrow(() => {
|
||||
https.createServer({
|
||||
key: params[0],
|
||||
cert: params[1],
|
||||
ca: params[2]
|
||||
});
|
||||
https.createServer({
|
||||
key: params[0],
|
||||
cert: params[1],
|
||||
ca: params[2]
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user