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.
22 lines
553 B
22 lines
553 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const http2 = require('http2');
|
|
|
|
const invalidOptions = [() => {}, 1, 'test', null, undefined];
|
|
const invalidArgTypeError = {
|
|
type: TypeError,
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
message: 'The "options" argument must be of type object'
|
|
};
|
|
|
|
// Error if options are not passed to createSecureServer
|
|
invalidOptions.forEach((invalidOption) =>
|
|
common.expectsError(
|
|
() => http2.createSecureServer(invalidOption),
|
|
invalidArgTypeError
|
|
)
|
|
);
|
|
|