Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2025-11-20
/
.
/
test
/
parallel
/
test-url-revokeobjecturl.js
blob: dae980c4d0074c2e2dfadd0ce000e0031f800756 [
file
] [
edit
]
'use strict'
;
require
(
'../common'
);
// Test ensures that the function receives the url argument.
const
assert
=
require
(
'node:assert'
);
assert
.
throws
(()
=>
{
URL
.
revokeObjectURL
();
},
{
code
:
'ERR_MISSING_ARGS'
,
name
:
'TypeError'
,
});