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:
committed by
gsxdsm
parent
5793c4bcd7
commit
3d0cce72f2
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user