feat(FN-4003): merge fusion/fn-4003

This commit is contained in:
gsxdsm
2026-05-11 06:36:38 -07:00
parent be728d8ebb
commit 783928fe3e
2 changed files with 2 additions and 2 deletions

View File

@@ -187,7 +187,7 @@ describe("CLI bundle output", () => {
expect(existsSync(manifestPath)).toBe(true);
const manifest = JSON.parse(readFileSync(manifestPath, "utf-8")) as { id?: string; name?: string };
expect(manifest.id).toBe("fusion-plugin-roadmap");
expect(manifest.id).toBe("roadmap-planner");
expect(typeof manifest.name).toBe("string");
expect(manifest.name?.length).toBeGreaterThan(0);

View File

@@ -647,7 +647,7 @@ describe("QuickChatFAB session-first UX", () => {
});
});
it("FN-3945: snaps to bottom when opening with an active session already loaded", async () => {
it("FN-3945: snaps to bottom on controlled initial open (open=false -> open=true) with an active session already loaded", async () => {
mockFetchChatMessages.mockResolvedValueOnce({
messages: [{ id: "msg-open", sessionId: "session-model", role: "assistant", content: "Loaded", createdAt: new Date().toISOString() }],
});