feat(scripts): pnpm work dispatch — wire CLI to dispatch.mjs

This commit is contained in:
2026-05-13 08:19:19 +02:00
parent da811eb461
commit d1b00f1cf5
2 changed files with 18 additions and 2 deletions

View File

@@ -51,4 +51,9 @@ describe("pnpm work cli", () => {
const out = run("blocked");
expect(out.length).toBeGreaterThan(0);
});
it("dispatch prints a plan", () => {
const out = run("dispatch");
expect(out).toContain("Dispatch plan");
});
});