Skip to content

Commit b5c2a44

Browse files
committed
squash: add test
Signed-off-by: Michael Dawson <[email protected]>
1 parent 18370e6 commit b5c2a44

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
'use strict';
2+
const common = require('../common');
3+
if (!common.hasCrypto)
4+
common.skip('missing crypto');
5+
6+
const assert = require('assert');
7+
const crypto = require('crypto');
8+
9+
const secLevel = crypto.getOpenSSLSecLevel();
10+
assert.ok(secLevel >= 0 && secLevel <= 5);

0 commit comments

Comments
 (0)