Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: remove timeout in test-https-proxy-request-handshake-failure
The timeout is unnecessary since we are testing for certificate
failure. It can cause flakes on very slow machines where the
request cannot be finished in 1 second.
  • Loading branch information
joyeecheung committed Jul 22, 2025
commit d510e5049d86abd198ec5a4dea1df79eea300bbc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ const requestUrl = `https://${serverHost}/test`;
const { code, signal, stderr, stdout } = await runProxiedRequest({
NODE_USE_ENV_PROXY: 1,
REQUEST_URL: requestUrl,
REQUEST_TIMEOUT: 1000,
HTTPS_PROXY: `http://localhost:${proxy.address().port}`,
});

Expand Down
Loading