We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3055ebb commit c5363b0Copy full SHA for c5363b0
test/parallel/test-tls-alpn-server-client.js
@@ -6,10 +6,10 @@ if (!common.hasCrypto) {
6
return;
7
}
8
9
-if (!process.features.tls_alpn) {
10
- console.error('Skipping because node compiled without OpenSSL or ' +
11
- 'with old OpenSSL version.');
12
- process.exit(0);
+if (!process.features.tls_alpn || !process.features.tls_npn) {
+ common.skip('Skipping because node compiled without NPN or ALPN' +
+ ' feature of OpenSSL.');
+ return;
13
14
15
const assert = require('assert');
test/parallel/test-tls-npn-server-client.js
@@ -1,7 +1,7 @@
1
'use strict';
2
if (!process.features.tls_npn) {
3
- common.skip('node compiled without OpenSSL or ' +
4
+ common.skip('Skipping because node compiled without NPN feature of' +
+ ' OpenSSL.');
5
0 commit comments