mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 03:12:57 +00:00

ERR_INVALID_ARG_TYPE is the most common error used throughout the code base. This improves the error message by providing more details to the user and by indicating more precisely which values are allowed ones and which ones are not. It adds the actual input to the error message in case it's a primitive. If it's a class instance, it'll print the class name instead of "object" and "falsy" or similar entries are not named "type" anymore. PR-URL: https://github.com/nodejs/node/pull/29675 Reviewed-By: Rich Trott <rtrott@gmail.com>
28 lines
625 B
JavaScript
28 lines
625 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const url = require('url');
|
|
|
|
const throwsObjsAndReportTypes = [
|
|
undefined,
|
|
null,
|
|
true,
|
|
false,
|
|
0,
|
|
function() {},
|
|
Symbol('foo')
|
|
];
|
|
|
|
for (const urlObject of throwsObjsAndReportTypes) {
|
|
common.expectsError(function() {
|
|
url.format(urlObject);
|
|
}, {
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "urlObject" argument must be one of type object or string.' +
|
|
common.invalidArgTypeHelper(urlObject)
|
|
});
|
|
}
|
|
assert.strictEqual(url.format(''), '');
|
|
assert.strictEqual(url.format({}), '');
|