feat(FN-4885): complete Step 7 — finalize docs and changeset

Fusion-Task-Id: FN-4885
Fusion-Task-Lineage: 31110eed-5ca3-4d67-8f11-581185056dc6
This commit is contained in:
Fusion (runfusion.ai)
2026-05-17 09:30:31 -07:00
committed by gsxdsm
parent 5793c4bcd7
commit 3d0cce72f2
6 changed files with 14 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ describe("reliability interactions: in-review stall deadlock disposition", () =>
expect(task.pausedReason).toBe("in-review-stall-deadlock");
expect(task.status).toBe("failed");
const disposedEntries = task.log.filter((entry) =>
const disposedEntries = task.log.filter((entry: { action: string }) =>
entry.action.startsWith("In-review stall auto-disposed [merge-blocker]:"),
);
expect(disposedEntries).toHaveLength(1);
@@ -143,7 +143,7 @@ describe("reliability interactions: in-review stall deadlock disposition", () =>
expect(task.pausedReason).not.toBe("in-review-stall-deadlock");
expect((store.updateTask as any).mock.calls.length).toBe(0);
expect(task.log.some((entry) => entry.action.startsWith("In-review stall auto-disposed ["))).toBe(false);
expect(task.log.some((entry: { action: string }) => entry.action.startsWith("In-review stall auto-disposed ["))).toBe(false);
expect(((store as any).__auditEvents as any[]).some((event) => event.mutationType === "task:in-review-stall-deadlock-disposed")).toBe(false);
manager.stop();