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, + ); });