From 942d02314816a3d6fccee6183694e8f66e4a9cf6 Mon Sep 17 00:00:00 2001 From: Devin Foley Date: Thu, 26 Mar 2026 23:27:47 -0700 Subject: [PATCH] Fix missing lastOutputAt in HeartbeatRun test mock Add lastOutputAt: null to the makeRun helper in inbox.test.ts to match the updated HeartbeatRun type. Co-Authored-By: Paperclip --- ui/src/lib/inbox.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/lib/inbox.test.ts b/ui/src/lib/inbox.test.ts index af7c1d35..242997c5 100644 --- a/ui/src/lib/inbox.test.ts +++ b/ui/src/lib/inbox.test.ts @@ -113,6 +113,7 @@ function makeRun(id: string, status: HeartbeatRun["status"], createdAt: string, externalRunId: null, processPid: null, processStartedAt: null, + lastOutputAt: null, retryOfRunId: null, processLossRetryCount: 0, stdoutExcerpt: null,