From cbf41859aac8f5047cb1df8eab18c4c72245a44b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 4 Jan 2026 01:44:41 +0100 Subject: [PATCH] test: relax cron default scheduler timeout --- src/gateway/server.cron.test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/gateway/server.cron.test.ts b/src/gateway/server.cron.test.ts index 4f66dcf9a..aa6bf6839 100644 --- a/src/gateway/server.cron.test.ts +++ b/src/gateway/server.cron.test.ts @@ -214,7 +214,9 @@ describe("gateway server cron", () => { testState.cronStorePath = undefined; }); - test("enables cron scheduler by default and runs due jobs automatically", async () => { + test( + "enables cron scheduler by default and runs due jobs automatically", + async () => { const dir = await fs.mkdtemp( path.join(os.tmpdir(), "clawdis-gw-cron-default-on-"), ); @@ -305,5 +307,7 @@ describe("gateway server cron", () => { testState.cronStorePath = undefined; await fs.rm(dir, { recursive: true, force: true }); } - }); + }, + 15_000, + ); });