feat(FN-3891): add verificationFixRetries merge control setting

Added a new `verificationFixRetries` merge control to the Settings modal, documented it in the settings reference, and added corresponding tests; a changeset was also included for the `@runfusion/fusion` package.

Fusion-Task-Id: FN-3891
This commit is contained in:
Fusion
2026-05-11 08:14:30 -07:00
committed by gsxdsm
parent d1f4d5f579
commit ee4f7a580e
3 changed files with 85 additions and 5 deletions

View File

@@ -368,6 +368,16 @@ describe("MissionStore", () => {
expect(batchedResult.summary.completedFeatures).toBe(singleSummary.completedFeatures);
expect(batchedResult.summary.progressPercent).toBe(singleSummary.progressPercent);
});
it("preserves persisted interviewState when listing missions with summaries", () => {
const interviewMission = store.createMission({ title: "Interview mission" });
store.updateMissionInterviewState(interviewMission.id, "in_progress");
const listed = store.listMissionsWithSummaries().find((mission) => mission.id === interviewMission.id);
expect(listed).toBeDefined();
expect(listed?.interviewState).toBe("in_progress");
});
});
// ── Batched Health Tests ──────────────────────────────────────────────