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
10 lines
364 B
TypeScript
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);
|
|
});
|
|
});
|