Files
fusion/packages/dashboard/src/__tests__/roadmap-suggestions.test.ts
Fusion d910c0c0f3 feat(FN-3637): establish canonical roadmap plugin ID and compatibility rout
Merged commits stabilize the Fusion roadmap plugin's identity and routing surface, establishing a canonical plugin ID and compatibility routes so the roadmap plugin integrates cleanly with the dashboard's plugin system. Added new roadmap-routes and roadmap-suggestions modules in the dashboard packag

Fusion-Task-Id: FN-3637
2026-05-11 06:47:43 -07:00

10 lines
364 B
TypeScript

import { describe, it, expect } from "vitest";
import { SUGGESTION_TIMEOUT_MS } from "../roadmap-suggestions.js";
describe("roadmap suggestions compatibility exports", () => {
it("re-exports suggestion timeout from roadmap plugin", () => {
expect(typeof SUGGESTION_TIMEOUT_MS).toBe("number");
expect(SUGGESTION_TIMEOUT_MS).toBeGreaterThan(0);
});
});