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

PR-URL: https://github.com/nodejs/node/pull/47552 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
20 lines
373 B
JavaScript
20 lines
373 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
// One argument is required
|
|
assert.throws(() => {
|
|
URL.canParse();
|
|
}, {
|
|
code: 'ERR_MISSING_ARGS',
|
|
name: 'TypeError',
|
|
});
|
|
|
|
{
|
|
// This test is to ensure that the v8 fast api works.
|
|
for (let i = 0; i < 1e5; i++) {
|
|
assert(URL.canParse('https://www.example.com/path/?query=param#hash'));
|
|
}
|
|
}
|