mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
3dce4fb85f
Since the URL and URLSearchParams classes are available in the global object, there is no need to require them from 'url'. PR-URL: https://github.com/nodejs/node/pull/36927 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
27 lines
465 B
JavaScript
27 lines
465 B
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
assert.deepStrictEqual(
|
|
Object.getOwnPropertyDescriptor(global, 'URL'),
|
|
{
|
|
value: URL,
|
|
writable: true,
|
|
configurable: true,
|
|
enumerable: false
|
|
}
|
|
);
|
|
|
|
assert.deepStrictEqual(
|
|
Object.getOwnPropertyDescriptor(global, 'URLSearchParams'),
|
|
{
|
|
value: URLSearchParams,
|
|
writable: true,
|
|
configurable: true,
|
|
enumerable: false
|
|
}
|
|
);
|