mirror of https://github.com/nodejs/node.git
28 lines
514 B
JavaScript
28 lines
514 B
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { URL, URLSearchParams } = require('url');
|
|
|
|
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
|
|
}
|
|
);
|