feat(FN-3994): fix bundle-output test path reference to remain compatible w

Fixes a bundle-output test assertion to keep workspace verification green, part of the FN-3994 verification flow.

Fusion-Task-Id: FN-3994
This commit is contained in:
Fusion
2026-05-11 08:26:34 -07:00
committed by gsxdsm
parent ee4f7a580e
commit c20f9e4239

View File

@@ -187,7 +187,7 @@ describe("CLI bundle output", () => {
expect(existsSync(manifestPath)).toBe(true);
const manifest = JSON.parse(readFileSync(manifestPath, "utf-8")) as { id?: string; name?: string };
expect(manifest.id).toBe("roadmap-planner");
expect(manifest.id).toBe("fusion-plugin-roadmap");
expect(typeof manifest.name).toBe("string");
expect(manifest.name?.length).toBeGreaterThan(0);