Skip to content

Commit

Permalink
test: skip ip tests on Edge (same as Chrome)
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed May 11, 2020
1 parent 524c292 commit e2a09e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/basic.js
Expand Up @@ -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
}
Expand Down

0 comments on commit e2a09e4

Please sign in to comment.