feat(FN-5314): add broad-scope advisory chip to TaskCard and banner to Task

Adds broad-scope advisory chips to TaskCard and banner to TaskDetailModal with comprehensive test coverage and a dashboard guide entry. TaskCard gains an inline advisory chip (with styles), TaskDetailModal gets a matching banner, and both components have dedicated test suites covering the new UI ele

Fusion-Task-Id: FN-5314

Fusion-Task-Lineage: cbc88f36-d029-4e4b-ac9c-32a77560b8b9
This commit is contained in:
Fusion (runfusion.ai)
2026-05-20 09:02:15 -07:00
committed by gsxdsm
parent 22d59b5f9a
commit c9ff2078b5
13 changed files with 434 additions and 5 deletions

View File

@@ -23,9 +23,12 @@ function initRepo(dir: string): void {
const created = new Set<string>();
afterEach(() => {
vi.restoreAllMocks();
for (const dir of created) rmSync(dir, { recursive: true, force: true });
created.clear();
try {
for (const dir of created) rmSync(dir, { recursive: true, force: true });
created.clear();
} finally {
vi.restoreAllMocks();
}
});
function mkRepo(): string {