From e2a09e435227a5f0c460dcb52b856609d449b41b Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sun, 10 May 2020 17:30:45 -0700 Subject: [PATCH] test: skip ip tests on Edge (same as Chrome) --- test/basic.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/basic.js b/test/basic.js index d0e53fda..7a6fcc18 100644 --- a/test/basic.js +++ b/test/basic.js @@ -222,8 +222,8 @@ test('ensure remote address and port are available right after connection', func t.end() return } - if (common.isBrowser('chrome')) { - t.pass('Skip on Chrome which hides local IPs with mDNS') + if (common.isBrowser('chrome') || common.isBrowser('edge')) { + t.pass('Skip on Chrome and Edge which hide local IPs with mDNS') t.end() return }