From 25c078b04a1599ec6b15df5f67ca3c9d7e52d6e3 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 23 Mar 2021 16:34:03 +0100 Subject: [PATCH] fixup! idna: use url module instead of punycode --- test/parallel/test-url-parse-format.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-url-parse-format.js b/test/parallel/test-url-parse-format.js index 58f0bccbd2757b..cbfc58b1123a72 100644 --- a/test/parallel/test-url-parse-format.js +++ b/test/parallel/test-url-parse-format.js @@ -1,5 +1,9 @@ 'use strict'; -require('../common'); +const common = require('../common'); + +if (!common.hasIntl) + common.skip('missing Intl'); + const assert = require('assert'); const inspect = require('util').inspect;