diff --git a/lib/dns.js b/lib/dns.js index 952ef39006c8e4..be52d545a0c873 100644 --- a/lib/dns.js +++ b/lib/dns.js @@ -321,8 +321,6 @@ Object.defineProperties(module.exports, { if (promises === null) { promises = require('internal/dns/promises'); promises.setServers = defaultResolverSetServers; - process.emitWarning('The dns.promises API is experimental', - 'ExperimentalWarning'); } return promises; } diff --git a/test/parallel/test-dns-lookup.js b/test/parallel/test-dns-lookup.js index 951e7e17a98b82..4fdfa1f4c22712 100644 --- a/test/parallel/test-dns-lookup.js +++ b/test/parallel/test-dns-lookup.js @@ -27,8 +27,6 @@ common.expectWarning({ 'internal/test/binding': [ 'These APIs are for internal testing only. Do not use them.' ], - // For dns.promises. - 'ExperimentalWarning': 'The dns.promises API is experimental', // For calling `dns.lookup` with falsy `hostname`. 'DeprecationWarning': { DEP0118: 'The provided hostname "false" is not a valid ' +