mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 23:23:46 +00:00

Make changes so that tests will pass when the comma-dangle settings applied to the rest of the code base are also applied to tests. PR-URL: https://github.com/nodejs/node/pull/37930 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
28 lines
617 B
JavaScript
28 lines
617 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) {
|
|
assert.throws(() => {
|
|
url.format(urlObject);
|
|
}, {
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
name: 'TypeError',
|
|
message: 'The "urlObject" argument must be one of type object or string.' +
|
|
common.invalidArgTypeHelper(urlObject)
|
|
});
|
|
}
|
|
assert.strictEqual(url.format(''), '');
|
|
assert.strictEqual(url.format({}), '');
|