Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-crypto-authenticated.js2
-rw-r--r--test/parallel/test-tls-empty-sni-context.js6
2 files changed, 3 insertions, 5 deletions
diff --git a/test/parallel/test-crypto-authenticated.js b/test/parallel/test-crypto-authenticated.js
index 245783fb1b4..1a628023b5c 100644
--- a/test/parallel/test-crypto-authenticated.js
+++ b/test/parallel/test-crypto-authenticated.js
@@ -318,7 +318,7 @@ for (const i in TEST_CASES) {
}
if (common.hasFipsCrypto && test.iv.length < 24) {
- console.log('1..0 # Skipped: IV len < 12 bytes unsupported in FIPS mode');
+ common.skip('IV len < 12 bytes unsupported in FIPS mode');
continue;
}
diff --git a/test/parallel/test-tls-empty-sni-context.js b/test/parallel/test-tls-empty-sni-context.js
index 994a81e9ea9..e68378fb4ea 100644
--- a/test/parallel/test-tls-empty-sni-context.js
+++ b/test/parallel/test-tls-empty-sni-context.js
@@ -3,16 +3,14 @@
const common = require('../common');
if (!process.features.tls_sni) {
- console.log('1..0 # Skipped: node compiled without OpenSSL or ' +
- 'with old OpenSSL version.');
+ common.skip('node compiled without OpenSSL or with old OpenSSL version.');
return;
}
const assert = require('assert');
if (!common.hasCrypto) {
- console.log('1..0 # Skipped: missing crypto');
- return;
+ return common.skip('missing crypto');
}
const tls = require('tls');