Merge pull request #230 from multica-ai/agent/lambda/bba7b0bd

fix(web): show executing agent name in task log title
This commit is contained in:
Jiayuan Zhang 2026-03-31 17:56:54 +08:00 committed by GitHub
commit 3f612c37f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 5 deletions

View file

@ -333,10 +333,10 @@ describe("IssueDetailPage", () => {
await user.click(submitBtn);
await waitFor(() => {
expect(mockCreateComment).toHaveBeenCalledWith(
"issue-1",
"New test comment",
);
expect(mockCreateComment).toHaveBeenCalled();
const [issueId, content] = mockCreateComment.mock.calls[0]!;
expect(issueId).toBe("issue-1");
expect(content).toBe("New test comment");
});
await waitFor(() => {