mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
517 B
19 lines
517 B
7 years ago
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
if (!common.hasCrypto)
|
||
|
common.skip('missing crypto');
|
||
|
const assert = require('assert');
|
||
|
const http2 = require('http2');
|
||
|
|
||
|
const {
|
||
|
Http2ServerRequest,
|
||
|
Http2ServerResponse,
|
||
|
} = http2;
|
||
|
|
||
|
const protoRequest = Object.create(Http2ServerRequest.prototype);
|
||
|
const protoResponse = Object.create(Http2ServerResponse.prototype);
|
||
|
|
||
|
assert.strictEqual(protoRequest instanceof Http2ServerRequest, true);
|
||
|
assert.strictEqual(protoResponse instanceof Http2ServerResponse, true);
|