diff --git a/packages/logicsrc-mcp/src/standards.test.ts b/packages/logicsrc-mcp/src/standards.test.ts index a80eeaa..dc50ef5 100644 --- a/packages/logicsrc-mcp/src/standards.test.ts +++ b/packages/logicsrc-mcp/src/standards.test.ts @@ -202,7 +202,8 @@ describe("MCP: OpenPRD", () => { it("reports the next free id and the allowed lifecycle moves", async () => { const client = await connect(); - expect(toolText(await client.callTool({ name: "prd_next_id", arguments: {} }))).toBe("0002"); + // Asserted against the live prd/ directory, so this advances with every PRD added. + expect(toolText(await client.callTool({ name: "prd_next_id", arguments: {} }))).toBe("0003"); const moves = await client.callTool({ name: "prd_next_statuses", arguments: { ref: "0001" } }); const payload = JSON.parse(toolText(moves)) as { status: string; allowedNext: string[] };