feat(FN-4493): complete Step 8 — finalize docs and release metadata

Fusion-Task-Id: FN-4493
Fusion-Task-Lineage: 966c7c55-fd51-4263-9d4e-87e9d06bfb6f
This commit is contained in:
Fusion
2026-05-14 12:29:34 -07:00
committed by gsxdsm
parent f8206d4b1c
commit f6f44566e5
3 changed files with 14 additions and 0 deletions

View File

@@ -53,6 +53,13 @@ test("replaces seeded workflow prompts and remains idempotent", async () => {
},
]);
const runCheckStale = spawnSync("node", [scriptPath, `--db=${dbPath}`, "--check"], {
encoding: "utf8",
cwd: root,
});
assert.equal(runCheckStale.status, 0);
assert.match(runCheckStale.stdout, /WS-004: differs/);
const run1 = spawnSync("node", [scriptPath, `--db=${dbPath}`], { encoding: "utf8", cwd: root });
assert.equal(run1.status, 0);
assert.match(run1.stdout, /WS-004: updated/);