test: add hasCrypto to tls-wrap-event-emmiter

Currently when building --without-ssl this test will report the
following error:
internal/util.js:82
    throw new Error('Node.js is not compiled with openssl crypto
support');

This commit adds a check for crypto and skips this test if node was
built without ssl support.

PR-URL: https://github.com/nodejs/node/pull/13041
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Daniel Bevenius 2017-05-15 20:39:52 +02:00
parent ad7b98baa8
commit 5debcceafc

View File

@ -5,7 +5,11 @@
* Test checks if we get exception instead of runtime error
*/
require('../common');
const common = require('../common');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
const assert = require('assert');
const TlsSocket = require('tls').TLSSocket;