summaryrefslogtreecommitdiff
path: root/test/parallel/test-domain-crypto.js
diff options
context:
space:
mode:
authorJeremiah Senkpiel <fishrock123@rocketmail.com>2016-05-11 15:34:52 -0400
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2016-05-12 16:43:35 -0400
commit52bae222a3a8480b2b30d8dc4629b64a284410d4 (patch)
tree480b7f6bfc0c4ef6863c2aaec3260c893d558e80 /test/parallel/test-domain-crypto.js
parentdffafde7f1b5335bcb50c3c72d55add41ca00924 (diff)
downloadandroid-node-v8-52bae222a3a8480b2b30d8dc4629b64a284410d4.tar.gz
android-node-v8-52bae222a3a8480b2b30d8dc4629b64a284410d4.tar.bz2
android-node-v8-52bae222a3a8480b2b30d8dc4629b64a284410d4.zip
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-domain-crypto.js')
-rw-r--r--test/parallel/test-domain-crypto.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/parallel/test-domain-crypto.js b/test/parallel/test-domain-crypto.js
index e6dbccf86c..1109591fee 100644
--- a/test/parallel/test-domain-crypto.js
+++ b/test/parallel/test-domain-crypto.js
@@ -1,14 +1,16 @@
-/* eslint-disable required-modules */
'use strict';
+const common = require('../common');
+
try {
var crypto = require('crypto');
} catch (e) {
- console.log('1..0 # Skipped: node compiled without OpenSSL.');
+ common.skip('node compiled without OpenSSL.');
return;
}
// Pollution of global is intentional as part of test.
+common.globalCheck = false;
// See https://github.com/nodejs/node/commit/d1eff9ab
global.domain = require('domain');