diff --git a/test/parallel/test-url-parse-format.js b/test/parallel/test-url-parse-format.js index ef4aad51d0e3ac..f8761514a30b72 100644 --- a/test/parallel/test-url-parse-format.js +++ b/test/parallel/test-url-parse-format.js @@ -1007,6 +1007,22 @@ const parseTests = { path: '/', href: 'https://evil.com$.example.com/' }, + + // Validate the output of hostname with commas. + 'x://0.0,1.1/': { + protocol: 'x:', + slashes: true, + auth: null, + host: '0.0,1.1', + port: null, + hostname: '0.0,1.1', + hash: null, + search: null, + query: null, + pathname: '/', + path: '/', + href: 'x://0.0,1.1/' + } }; for (const u in parseTests) {