chore: Fix types in tests 40/N.

This commit is contained in:
cpojer
2026-02-17 15:48:06 +09:00
parent c4bd82d81d
commit 3dc8d5656d
13 changed files with 23 additions and 18 deletions

View File

@@ -18,7 +18,7 @@ describe("CronService", () => {
const store = await makeStorePath();
const enqueueSystemEvent = vi.fn();
const requestHeartbeatNow = vi.fn();
const runIsolatedAgentJob = vi.fn(async () => ({ status: "ok" }));
const runIsolatedAgentJob = vi.fn(async () => ({ status: "ok" as const }));
const cronA = new CronService({
storePath: store.storePath,