mirror of
https://github.com/zebrajr/node.git
synced 2025-12-07 12:20:50 +01:00
I assume they aren't meant to be there. PR-URL: https://github.com/nodejs/node/pull/16631 Refs: https://github.com/nodejs/node/pull/15685 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
|
|
assert.doesNotThrow(() => require('http2'));
|