Files
fusion/packages/dashboard/src/__tests__/chat.rooms.test.ts
Fusion cab3c4970f feat(FN-3812): add rooms test scaffolds and coverage across core and dashbo
This branch establishes test scaffolding for rooms functionality across core and dashboard, adding test plans, room-specific test files for ChatView, AgentMentionPopup, QuickChatFAB, and core chat routes/stores, while also updating AgentMentionPopup with enhanced room-aware behavior and QuickChatFAB

Fusion-Task-Id: FN-3812
2026-05-10 07:59:40 -07:00

18 lines
789 B
TypeScript

import { describe, it } from "vitest";
describe("Chat orchestration — rooms (FN-3805..FN-3811 contract)", () => {
describe("Mention routing in rooms", () => {
it.todo("direct mention in room routes targeted response from addressed room member");
it.todo("non-member mention behavior does not dispatch to out-of-room agents and surfaces explicit feedback");
});
describe("Hybrid dispatch behavior", () => {
it.todo("hybrid ambient response includes non-mentioned room members when room dispatch mode allows ambient participation");
it.todo("mention suppresses ambient on the addressed agent to avoid duplicate responses");
});
describe("Regression guard", () => {
it.todo("direct-chat regression guard keeps legacy direct send path unchanged");
});
});