feat(FN-3764): add manage view with edit modal for CLI printing press plugi

FN-3764 adds a manage view and edit draft modal to the CLI printing press plugin, wiring in draft storage, wizard routes, and plugin view registry integration so users can view and edit their printing press drafts directly from the dashboard. Includes corresponding tests, documentation updates, and

Fusion-Task-Id: FN-3764
This commit is contained in:
Fusion
2026-05-10 15:59:15 -07:00
committed by gsxdsm
parent e9834def83
commit 8b56dff8b0
20 changed files with 646 additions and 19 deletions

View File

@@ -60,9 +60,8 @@ describe("dependency graph plugin index", () => {
expect(result.status, `Node import check failed: ${result.stderr || result.stdout}`).toBe(0);
});
const hasPluginLoaderPrereqs = existsSync(join(process.cwd(), "dist/index.js"));
const pluginLoaderTest = hasPluginLoaderPrereqs ? it : it.skip;
pluginLoaderTest("is loadable by PluginLoader without throwing", async () => {
const pluginLoaderDistTest = existsSync(join(process.cwd(), "dist/index.js")) ? it : it.skip;
pluginLoaderDistTest("is loadable by PluginLoader without throwing", async () => {
const rootDir = mkdtempSync(join(tmpdir(), "fn-3737-plugin-loader-"));
testDirs.push(rootDir);