feat(FN-4398): complete remaining dashboard visibility and docs

Fusion-Task-Id: FN-4398
Fusion-Task-Lineage: 8b898b2e-3468-4fa7-8546-b8f6ba52cf46
This commit is contained in:
Fusion
2026-05-14 15:23:49 -07:00
committed by gsxdsm
parent 233c5bbd8e
commit 652e820f7d
25 changed files with 210 additions and 34 deletions

View File

@@ -1,6 +1,7 @@
import { describe, expect, it, vi } from "vitest";
import {
DEFAULT_PROJECT_SETTINGS,
RetryStormError,
serializeRetryStormError,
type TaskDetail,
@@ -50,6 +51,7 @@ describe("executor retry storm integration", () => {
await recordRetry({
store: store as never,
settings: {
...DEFAULT_PROJECT_SETTINGS,
maxReviewerContextRetries: 2,
maxTotalRetriesBeforeFail: 25,
},

View File

@@ -1,6 +1,6 @@
import { describe, expect, it, vi, beforeEach, afterEach } from "vitest";
import { RetryStormError, type TaskDetail } from "@fusion/core";
import { DEFAULT_PROJECT_SETTINGS, RetryStormError, type TaskDetail } from "@fusion/core";
import { recordRetry } from "../retry-burned-logger.js";
function makeTask(overrides: Partial<TaskDetail> = {}): TaskDetail {
@@ -22,6 +22,7 @@ function makeTask(overrides: Partial<TaskDetail> = {}): TaskDetail {
describe("recordRetry", () => {
const baseSettings = {
...DEFAULT_PROJECT_SETTINGS,
maxBranchConflictRecoveries: 5,
maxReviewerContextRetries: 2,
maxReviewerFallbackRetries: 2,