Skip to content

Commit 18c9913

Browse files
Trottjasnell
authored andcommitted
test: add tests for missing https agent options
Add test that minVersion and maxVersion options are accepted. This should complete coverage for lib/https.js. Refs: https://codecov.io/gh/nodejs/node/src/ec0dcd720e10831b3e783b415c5dc011ed5be2f8/lib/https.js PR-URL: #38202 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 4ad8e83 commit 18c9913

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/parallel/test-https-agent-additional-options.js

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ const updatedValues = new Map([
3636
['dhparam', fixtures.readKey('dh2048.pem')],
3737
['ecdhCurve', 'secp384r1'],
3838
['honorCipherOrder', true],
39+
['minVersion', 'TLSv1.1'],
40+
['maxVersion', 'TLSv1.3'],
3941
['secureOptions', crypto.constants.SSL_OP_CIPHER_SERVER_PREFERENCE],
4042
['secureProtocol', 'TLSv1_1_method'],
4143
['sessionIdContext', 'sessionIdContext'],

0 commit comments

Comments
 (0)