The initials of expected in TypeError[ERR_INVALID_ARG_TYPE] are inconsistent. This change is to unify them. PR-URL: https://github.com/nodejs/node/pull/16401 Fixes: https://github.com/nodejs/node/issues/16383 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
22 lines
553 B
JavaScript
22 lines
553 B
JavaScript
'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
|
|
)
|
|
);
|