- ChatSpecCard.test.tsx — 9 it.todo() entries covering spec card behaviors - ChatHandoffIndicator.test.tsx — 3 it.todo() entries - ChatTaskCreatedBadge.test.tsx — 4 it.todo() entries - ChatStatusUpdateBadge.test.tsx — 3 it.todo() entries - useBrainstormerDefault.test.ts — 4 it.todo() entries - All 23 todo tests found and skipped by vitest (0 failures)
9 lines
356 B
TypeScript
9 lines
356 B
TypeScript
// @vitest-environment jsdom
|
|
import { describe, it } from "vitest";
|
|
|
|
describe("useBrainstormerDefault", () => {
|
|
it.todo("returns general role agent ID when available");
|
|
it.todo("returns first by createdAt when multiple general agents exist");
|
|
it.todo("returns null when no agents loaded");
|
|
it.todo("returns null when no general agent exists");
|
|
});
|