Files
bun.sh/test/js/node/parallel/test-http-agent-timeout-option.js
2025-05-29 14:46:39 -07:00

22 lines
618 B
JavaScript

const { mustCall } = require('../common');
const { strictEqual } = require('assert');
const { Agent, get } = require('http');
// Test that the listener that forwards the `'timeout'` event from the socket to
// the `ClientRequest` instance is added to the socket when the `timeout` option
// of the `Agent` is set.
const request = get({
agent: new Agent({ timeout: 50 }),
lookup: () => {}
});
request.on('socket', mustCall((socket) => {
strictEqual(socket.timeout, 50);
const listeners = socket.listeners('timeout');
strictEqual(listeners.length, 2);
strictEqual(listeners[1], request.timeoutCb);
}));