diff --git a/node/_tools/test/common/internet.js b/node/_tools/test/common/internet.js index 1d44c98ecaf2..b42fda66c63d 100644 --- a/node/_tools/test/common/internet.js +++ b/node/_tools/test/common/internet.js @@ -32,7 +32,10 @@ const addresses = { // record not found. Use this to guarantee record not found. NOT_FOUND: 'come.on.fhqwhgads.test', // A host with SRV records registered - SRV_HOST: '_jabber._tcp.google.com', + // TODO(kt3k): Temporarily use _caldav._tcp.google.com instead of + // _jabber._tcp.google.com, which currently doesn't respond + // SRV_HOST: '_jabber._tcp.google.com', + SRV_HOST: '_caldav._tcp.google.com', // A host with PTR records registered PTR_HOST: '8.8.8.8.in-addr.arpa', // A host with NAPTR records registered diff --git a/node/_tools/test/internet/test-dns-any.js b/node/_tools/test/internet/test-dns-any.js index a5f6449ae9c3..cd4450524568 100644 --- a/node/_tools/test/internet/test-dns-any.js +++ b/node/_tools/test/internet/test-dns-any.js @@ -152,10 +152,17 @@ TEST(async function test_google_for_cname_and_srv(done) { assert.ok(types.SRV); } - validateResult(await dnsPromises.resolve('_jabber._tcp.google.com', 'ANY')); + // TODO(kt3k): Temporarily use _caldav._tcp.google.com instead of + // _jabber._tcp.google.com, which currently doesn't respond + // validateResult(await dnsPromises.resolve('_jabber._tcp.google.com', 'ANY')); + validateResult(await dnsPromises.resolve('_caldav._tcp.google.com', 'ANY')); + + // TODO(kt3k): Temporarily use _caldav._tcp.google.com instead of + // _jabber._tcp.google.com, which currently doesn't respond const req = dns.resolve( - '_jabber._tcp.google.com', + // '_jabber._tcp.google.com', + '_caldav._tcp.google.com', 'ANY', common.mustSucceed((ret) => { validateResult(ret);