diff options
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-whatwg-url-custom-deepequal.js')
-rw-r--r-- | cli/tests/node_compat/test/parallel/test-whatwg-url-custom-deepequal.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-whatwg-url-custom-deepequal.js b/cli/tests/node_compat/test/parallel/test-whatwg-url-custom-deepequal.js deleted file mode 100644 index e33590530..000000000 --- a/cli/tests/node_compat/test/parallel/test-whatwg-url-custom-deepequal.js +++ /dev/null @@ -1,25 +0,0 @@ -// deno-fmt-ignore-file -// deno-lint-ignore-file - -// Copyright Joyent and Node contributors. All rights reserved. MIT license. -// Taken from Node 18.12.1 -// This file is automatically generated by `tools/node_compat/setup.ts`. Do not modify this file manually. - -'use strict'; -// This tests that the internal flags in URL objects are consistent, as manifest -// through assert libraries. -// See https://github.com/nodejs/node/issues/24211 - -// Tests below are not from WPT. - -require('../common'); -const assert = require('assert'); - -assert.deepStrictEqual( - new URL('./foo', 'https://example.com/'), - new URL('https://example.com/foo') -); -assert.deepStrictEqual( - new URL('./foo', 'https://user:pass@example.com/'), - new URL('https://user:pass@example.com/foo') -); |