From b6c9f0afe62495d51c543e6c7247245ecff2da5d Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Thu, 16 Apr 2026 16:27:56 +0200 Subject: [PATCH] test: try things --- scripts/test.mjs | 2 +- tests/server.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/test.mjs b/scripts/test.mjs index 997b4759a..f5b0f542b 100644 --- a/scripts/test.mjs +++ b/scripts/test.mjs @@ -72,7 +72,7 @@ const nodeArgs = [ '--test-force-exit', '--test-concurrency=1', '--test', - '--test-timeout=60000', + '--test-timeout=120000', ...flags, ...files, ]; diff --git a/tests/server.ts b/tests/server.ts index 7278861af..77369ce68 100644 --- a/tests/server.ts +++ b/tests/server.ts @@ -95,6 +95,7 @@ export class TestServer { stop(): Promise { return new Promise((res, rej) => { + this.#server.closeAllConnections(); this.#server.close(err => { if (err) { rej(err);