test: relax cron default scheduler timeout

This commit is contained in:
Peter Steinberger
2026-01-04 01:44:41 +01:00
parent 12186e14a9
commit cbf41859aa

View File

@@ -214,7 +214,9 @@ describe("gateway server cron", () => {
testState.cronStorePath = undefined; 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( const dir = await fs.mkdtemp(
path.join(os.tmpdir(), "clawdis-gw-cron-default-on-"), path.join(os.tmpdir(), "clawdis-gw-cron-default-on-"),
); );
@@ -305,5 +307,7 @@ describe("gateway server cron", () => {
testState.cronStorePath = undefined; testState.cronStorePath = undefined;
await fs.rm(dir, { recursive: true, force: true }); await fs.rm(dir, { recursive: true, force: true });
} }
}); },
15_000,
);
}); });