blob: 0a01efc517b916d8c1ec35e278730bae5f5ec136 (
plain)
1
2
3
4
5
6
7
8
|
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
assert.doesNotThrow(() => require('http2'));
|