Production typecheck (tsconfig.json + tsconfig.app.json) was already
clean, but a third config that includes test files surfaced 661 errors
across 60+ test files — accumulated drift between mock fixtures and
production types. Six parallel typescript-pro agents fixed every one
without touching production code.
Per-scope before/after (errors → 0):
ChatView 183
Mailbox + Agent suite (5 files) 156
Task / Modal suite (6 files) 127
App + small components (12 files) 96
Hooks + api/auth (8 files) 48
Long tail (32 files) 51
-----------------------------------------------------------------
Total 661
Major fix categories:
- Untyped state objects inferring `never[]` / `null` literals (root
cause of ~120 errors in ChatView alone — added a single
`UseChatReturn` annotation)
- Mock objects missing fields that became required: `WorkflowStep.mode`,
`ChatMessage.thinkingOutput / metadata`, `ChatSession.projectId`,
`Task.log`, `ProjectHealth` fields, `PtyTerminalSessionInfo.createdAt`,
`Agent.metadata`, `InboxResponse.total`, etc.
- Mock objects with stale fields that no longer exist:
`AgentBudgetStatus.budgetPeriod`, `truncated` on log responses,
`OutboxResponse.unreadCount`, `MergeResult.source/target/details`
- Modal props that became required (e.g. `PlanningModeModal.onTasksCreated`)
- String literals not in narrowed unions (`Column`, `WorkflowStepPhase`,
`InsightStatus`, `AgentLogType`, etc.)
- `querySelector` returning `Element` cast to `HTMLElement` for
`@testing-library/react`'s `within()`
- Vitest mock typing: `.mock.calls` access needing `vi.mocked(...)`,
zero-param tuple handling, generic `vi.fn(() => [])` inferring
`never[]`
Helpers introduced in test files (no shared infra):
- `makeSettings(overrides)` in ModelSelectorTab.test.tsx
- `makePromptOverrides(overrides)` in AgentPromptsManager.test.tsx
- `FileBrowserTestOverrides` type alias in FileBrowser.test.tsx
- `makeInboxResponse / makeOutboxResponse` in MailboxView.test.tsx
Verification:
- tsc -p tsconfig.json: exit 0
- tsc -p tsconfig.app.json: exit 0
- tsc -p tsconfig.test-check.json (new — includes test files): exit 0
- vitest run: 9639 / 9641 (2 pre-existing failures
in terminal-mobile-keyboard-layout.test.ts
unrelated to this work; verified via
`git stash` + run on clean HEAD)
Adds packages/dashboard/tsconfig.test-check.json to keep this regression
guard available locally — same as tsconfig.app.json minus the test
exclude.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
245 lines
6.8 KiB
TypeScript
245 lines
6.8 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from "vitest";
|
|
import { act, renderHook, waitFor } from "@testing-library/react";
|
|
import type { Task, TaskDetail } from "@fusion/core";
|
|
import { useModalManager } from "../useModalManager";
|
|
|
|
function createTaskDetail(id: string): TaskDetail {
|
|
return {
|
|
id,
|
|
title: `Task ${id}`,
|
|
description: "desc",
|
|
column: "todo",
|
|
createdAt: new Date().toISOString(),
|
|
updatedAt: new Date().toISOString(),
|
|
columnMovedAt: new Date().toISOString(),
|
|
dependencies: [],
|
|
steps: [],
|
|
currentStep: 0,
|
|
log: [],
|
|
attachments: [],
|
|
size: "M",
|
|
reviewLevel: 1,
|
|
steeringComments: [],
|
|
prompt: "# Task spec",
|
|
} as TaskDetail;
|
|
}
|
|
|
|
function createTask(id: string): Task {
|
|
return {
|
|
id,
|
|
title: `Task ${id}`,
|
|
description: "desc",
|
|
column: "todo",
|
|
createdAt: new Date().toISOString(),
|
|
updatedAt: new Date().toISOString(),
|
|
columnMovedAt: new Date().toISOString(),
|
|
dependencies: [],
|
|
steps: [],
|
|
currentStep: 0,
|
|
log: [],
|
|
attachments: [],
|
|
size: "M",
|
|
reviewLevel: 1,
|
|
steeringComments: [],
|
|
} as Task;
|
|
}
|
|
|
|
describe("useModalManager", () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
it("manages open/close state for basic modals", () => {
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [] }),
|
|
);
|
|
|
|
expect(result.current.newTaskModalOpen).toBe(false);
|
|
expect(result.current.anyModalOpen).toBe(false);
|
|
|
|
act(() => {
|
|
result.current.openNewTask();
|
|
});
|
|
|
|
expect(result.current.newTaskModalOpen).toBe(true);
|
|
expect(result.current.anyModalOpen).toBe(true);
|
|
|
|
act(() => {
|
|
result.current.closeNewTask();
|
|
});
|
|
|
|
expect(result.current.newTaskModalOpen).toBe(false);
|
|
expect(result.current.anyModalOpen).toBe(false);
|
|
});
|
|
|
|
it("handles planning open, resume, and close lifecycle", () => {
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [{ id: "plan-1" }] }),
|
|
);
|
|
|
|
act(() => {
|
|
result.current.openPlanningWithInitialPlan("Build dashboard");
|
|
});
|
|
|
|
expect(result.current.isPlanningOpen).toBe(true);
|
|
expect(result.current.planningInitialPlan).toBe("Build dashboard");
|
|
|
|
act(() => {
|
|
result.current.closePlanning();
|
|
});
|
|
|
|
expect(result.current.isPlanningOpen).toBe(false);
|
|
expect(result.current.planningInitialPlan).toBeNull();
|
|
expect(result.current.planningResumeSessionId).toBeUndefined();
|
|
|
|
act(() => {
|
|
result.current.resumePlanning();
|
|
});
|
|
|
|
expect(result.current.isPlanningOpen).toBe(true);
|
|
expect(result.current.planningResumeSessionId).toBe("plan-1");
|
|
});
|
|
|
|
it("keeps script-to-terminal handoff inside runScript", async () => {
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [] }),
|
|
);
|
|
|
|
act(() => {
|
|
result.current.openScripts();
|
|
});
|
|
expect(result.current.scriptsOpen).toBe(true);
|
|
|
|
await act(async () => {
|
|
await result.current.runScript("build", "pnpm build");
|
|
});
|
|
|
|
expect(result.current.scriptsOpen).toBe(false);
|
|
expect(result.current.terminalOpen).toBe(true);
|
|
expect(result.current.terminalInitialCommand).toBe("pnpm build");
|
|
});
|
|
|
|
it("tracks detail task state and supports tab-specific opens", () => {
|
|
const task = createTaskDetail("FN-123");
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [] }),
|
|
);
|
|
|
|
act(() => {
|
|
result.current.openDetailTask(task);
|
|
});
|
|
|
|
expect(result.current.detailTask?.id).toBe("FN-123");
|
|
expect(result.current.detailTaskInitialTab).toBe("definition");
|
|
|
|
act(() => {
|
|
result.current.openDetailWithChangesTab(task);
|
|
});
|
|
|
|
expect(result.current.detailTaskInitialTab).toBe("changes");
|
|
|
|
act(() => {
|
|
result.current.closeDetailTask();
|
|
});
|
|
|
|
expect(result.current.detailTask).toBeNull();
|
|
});
|
|
|
|
it("opens settings with an initial section and resets on close", () => {
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [] }),
|
|
);
|
|
|
|
act(() => {
|
|
result.current.openSettings("authentication");
|
|
});
|
|
|
|
expect(result.current.settingsOpen).toBe(true);
|
|
expect(result.current.settingsInitialSection).toBe("authentication");
|
|
|
|
act(() => {
|
|
result.current.closeSettings();
|
|
});
|
|
|
|
expect(result.current.settingsOpen).toBe(false);
|
|
expect(result.current.settingsInitialSection).toBeUndefined();
|
|
});
|
|
|
|
it("tracks system stats modal state and includes it in anyModalOpen", () => {
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [] }),
|
|
);
|
|
|
|
expect(result.current.systemStatsOpen).toBe(false);
|
|
expect(result.current.anyModalOpen).toBe(false);
|
|
|
|
act(() => {
|
|
result.current.openSystemStats();
|
|
});
|
|
|
|
expect(result.current.systemStatsOpen).toBe(true);
|
|
expect(result.current.anyModalOpen).toBe(true);
|
|
|
|
act(() => {
|
|
result.current.closeSystemStats();
|
|
});
|
|
|
|
expect(result.current.systemStatsOpen).toBe(false);
|
|
expect(result.current.anyModalOpen).toBe(false);
|
|
});
|
|
|
|
it("accepts plain Task object for optimistic modal opening", () => {
|
|
const task = createTask("FN-456");
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [] }),
|
|
);
|
|
|
|
act(() => {
|
|
result.current.openDetailTask(task);
|
|
});
|
|
|
|
expect(result.current.detailTask?.id).toBe("FN-456");
|
|
// Should not have prompt field (plain Task)
|
|
expect("prompt" in (result.current.detailTask as unknown as Record<string, unknown>)).toBe(false);
|
|
expect(result.current.detailTaskInitialTab).toBe("definition");
|
|
});
|
|
|
|
it("accepts plain Task object in openDetailWithChangesTab", () => {
|
|
const task = createTask("FN-789");
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [] }),
|
|
);
|
|
|
|
act(() => {
|
|
result.current.openDetailWithChangesTab(task);
|
|
});
|
|
|
|
expect(result.current.detailTask?.id).toBe("FN-789");
|
|
expect(result.current.detailTaskInitialTab).toBe("changes");
|
|
});
|
|
|
|
it("holds Task object in detailTask state correctly", () => {
|
|
const task = createTask("FN-100");
|
|
const { result } = renderHook(() =>
|
|
useModalManager({ projectId: "proj_1", planningSessions: [] }),
|
|
);
|
|
|
|
act(() => {
|
|
result.current.openDetailTask(task);
|
|
});
|
|
|
|
// State should hold the Task object with all its fields
|
|
const detailTask = result.current.detailTask;
|
|
expect(detailTask).not.toBeNull();
|
|
expect(detailTask!.id).toBe("FN-100");
|
|
expect(detailTask!.title).toBe("Task FN-100");
|
|
expect(detailTask!.column).toBe("todo");
|
|
|
|
// Can be closed and state resets
|
|
act(() => {
|
|
result.current.closeDetailTask();
|
|
});
|
|
expect(result.current.detailTask).toBeNull();
|
|
});
|
|
});
|