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

@@ -30,7 +30,7 @@ async function migrateAndLoadFirstJob(storePath: string): Promise<Record<string,
log: noopLogger,
enqueueSystemEvent: vi.fn(),
requestHeartbeatNow: vi.fn(),
runIsolatedAgentJob: vi.fn(async () => ({ status: "ok" })),
runIsolatedAgentJob: vi.fn(async () => ({ status: "ok" as const })),
});
await cron.start();