summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-socket-options.js
diff options
context:
space:
mode:
authorJeremiah Senkpiel <fishrock123@rocketmail.com>2016-05-11 15:34:52 -0400
committerEvan Lucas <evanlucas@me.com>2016-05-17 08:51:40 -0500
commitb1f58edd54b5b85c7b4fdfdf0824af8803e020d7 (patch)
tree572adecb1e040f1627bc6a5ab5e8445e0a3046cf /test/parallel/test-https-socket-options.js
parent7d3f5751b34725985286dc028f7b35c876806202 (diff)
downloadnode-new-b1f58edd54b5b85c7b4fdfdf0824af8803e020d7.tar.gz
test: abstract skip functionality to common
The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
Diffstat (limited to 'test/parallel/test-https-socket-options.js')
-rw-r--r--test/parallel/test-https-socket-options.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-https-socket-options.js b/test/parallel/test-https-socket-options.js
index 2adf8c798d..0306c65902 100644
--- a/test/parallel/test-https-socket-options.js
+++ b/test/parallel/test-https-socket-options.js
@@ -2,7 +2,7 @@
var common = require('../common');
if (!common.hasCrypto) {
- console.log('1..0 # Skipped: missing crypto');
+ common.skip('missing crypto');
return;
}
var https = require('https');