mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
* docs: replace legacy truth path references * feat: fold contextpack into workflow status * refactor: remove semantic repository index * fix: remove vulnerable frontmatter dependency * feat: broaden truth sync write authorization * test: restore workflow state regression coverage --------- Co-authored-by: MerlinH <merlinh221@gmail.com>
15 lines
509 B
TypeScript
15 lines
509 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import { buildProgram } from "../../src/cli/program.js";
|
|
|
|
describe("CLI program", () => {
|
|
it("describes index as workflow routing metadata instead of semantic code indexing", () => {
|
|
const program = buildProgram();
|
|
const indexCommand = program.commands.find((command) => command.name() === "index");
|
|
|
|
expect(indexCommand?.description()).toBe(
|
|
"Inspect derived Truthmark workflow routing metadata for the current checkout.",
|
|
);
|
|
});
|
|
});
|