From 0d245e8af61b4511aa24288ba29cdbd3ea909012 Mon Sep 17 00:00:00 2001 From: uzlopak Date: Thu, 1 Feb 2024 10:04:03 +0100 Subject: [PATCH] fix: make ci less flaky --- test/client-keep-alive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/client-keep-alive.js b/test/client-keep-alive.js index 924874232d7..961a44f1a8b 100644 --- a/test/client-keep-alive.js +++ b/test/client-keep-alive.js @@ -215,7 +215,7 @@ test('keep-alive threshold', (t) => { body.on('end', () => { const timeout = setTimeout(() => { t.fail() - }, 3e3) + }, 5e3) client.on('disconnect', () => { t.pass() clearTimeout(timeout)