diff --git a/lib/internal/process/pre_execution.js b/lib/internal/process/pre_execution.js index 756041e5044083..73ccca1c6c9d4d 100644 --- a/lib/internal/process/pre_execution.js +++ b/lib/internal/process/pre_execution.js @@ -19,7 +19,6 @@ const { const { reconnectZeroFillToggle } = require('internal/buffer'); const { defineOperation, - emitExperimentalWarning, exposeInterface, } = require('internal/util'); @@ -235,7 +234,6 @@ function setupFetch() { } async function fetch(input, init = undefined) { - emitExperimentalWarning('The Fetch API'); return lazyUndici().fetch(input, init); } diff --git a/test/parallel/test-fetch.mjs b/test/parallel/test-fetch.mjs index 2ec4a63e70f032..e24a38eb27db37 100644 --- a/test/parallel/test-fetch.mjs +++ b/test/parallel/test-fetch.mjs @@ -10,17 +10,9 @@ assert.strictEqual(typeof globalThis.Headers, 'function'); assert.strictEqual(typeof globalThis.Request, 'function'); assert.strictEqual(typeof globalThis.Response, 'function'); -common.expectWarning( - 'ExperimentalWarning', - 'The Fetch API is an experimental feature. This feature could change at any time' -); - -const server = http.createServer((req, res) => { - // TODO: Remove this once keep-alive behavior can be disabled from the client - // side. - res.setHeader('Keep-Alive', 'timeout=0, max=0'); +const server = http.createServer(common.mustCall((req, res) => { res.end('Hello world'); -}); +})); server.listen(0); await events.once(server, 'listening'); const port = server.address().port;