Finishing agent merge

This commit is contained in:
Dave
2026-02-19 18:05:21 +00:00
parent c94b3d4450
commit 8c2dc9b6a0
8 changed files with 186 additions and 29 deletions

View File

@@ -475,8 +475,8 @@ describe("Chat review panel", () => {
it("fetches upcoming stories on mount and renders panel", async () => {
mockedWorkflow.getUpcomingStories.mockResolvedValueOnce({
stories: [
{ story_id: "31_view_upcoming", name: "View Upcoming Stories" },
{ story_id: "32_worktree", name: null },
{ story_id: "31_view_upcoming", name: "View Upcoming Stories", error: null },
{ story_id: "32_worktree", name: null, error: null },
],
});
@@ -544,6 +544,7 @@ describe("Chat review panel", () => {
"The UI lists unchecked acceptance criteria.",
"Each TODO is displayed as its full text.",
],
error: null,
},
],
});
@@ -566,6 +567,7 @@ describe("Chat review panel", () => {
story_id: "28_ui_show_test_todos",
story_name: "Show Remaining Test TODOs in the UI",
todos: [],
error: null,
},
],
});