Browse Source

test: fix http-client-timeout-option-listeners

test-http-client-timeout-option-listeners is flaky due to depending on
completing operations before a 100ms socket timeout. The socket timeout
is an integral part of the test but can be very large. Set to the
maximum allowable value.

PR-URL: https://github.com/nodejs/node/pull/10224
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
v7.x
Rich Trott 8 years ago
committed by Myles Borins
parent
commit
553a32674a
  1. 5
      test/parallel/test-http-client-timeout-option-listeners.js

5
test/parallel/test-http-client-timeout-option-listeners.js

@ -9,13 +9,16 @@ const server = http.createServer((req, res) => {
res.end('');
});
// Maximum allowed value for timeouts
const timeout = 2 ** 31 - 1;
const options = {
agent,
method: 'GET',
port: undefined,
host: common.localhostIPv4,
path: '/',
timeout: common.platformTimeout(100)
timeout: timeout
};
server.listen(0, options.host, common.mustCall(() => {

Loading…
Cancel
Save