diff options
Diffstat (limited to 'cli/tests/testdata/custom_inspect_url.js')
-rw-r--r-- | cli/tests/testdata/custom_inspect_url.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/custom_inspect_url.js b/cli/tests/testdata/custom_inspect_url.js new file mode 100644 index 000000000..69aa2dc49 --- /dev/null +++ b/cli/tests/testdata/custom_inspect_url.js @@ -0,0 +1,3 @@ +console.log([new URL("https://example.com/path")]); +console.log({ url: new URL("https://example.com/path") }); +console.log({ url: [new URL("https://example.com/path")] }); |