mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
* feat: add workflow eval framework Add workflow evaluation scenarios, rubrics, schemas, and runner scripts for installed Truthmark workflows. Move research notes under docs/research and migrate tests from Vitest to node:test. * Potential fix for pull request finding 'CodeQL / Replacement of a substring with itself' Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --------- Co-authored-by: MerlinH <merlinh221@gmail.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
import { describe, it } from "node:test";
|
|
import { expect } from "expect";
|
|
|
|
import {
|
|
TRUTH_SYNC_BOUNDARIES,
|
|
TRUTH_SYNC_REPORT_TEMPLATE,
|
|
TRUTH_SYNC_SKIP_REASONS,
|
|
} from "../../src/sync/policy.js";
|
|
|
|
describe("Truth Sync policy", () => {
|
|
it("exposes the allowed skip reasons from the README as stable data", () => {
|
|
expect(TRUTH_SYNC_SKIP_REASONS).toEqual([
|
|
"documentation-only change",
|
|
"formatting-only change",
|
|
"clearly behavior-preserving rename with no truth impact",
|
|
"no Truthmark config exists yet",
|
|
"no functional code changes",
|
|
]);
|
|
});
|
|
|
|
it("captures the README read and write boundaries, including area routing repair", () => {
|
|
expect(TRUTH_SYNC_BOUNDARIES).toEqual({
|
|
read: [
|
|
"changed functional code files",
|
|
"nearby implementation context when needed to understand the changed surface",
|
|
".truthmark/config.yml",
|
|
"configured Truthmark route files",
|
|
"mapped truth docs",
|
|
],
|
|
write: [
|
|
"truth docs only",
|
|
"configured Truthmark route files when creating or repairing truth routing",
|
|
],
|
|
prohibit: ["must not rewrite functional code"],
|
|
});
|
|
});
|
|
|
|
it("captures the Truth Sync report headings as stable data", () => {
|
|
expect(TRUTH_SYNC_REPORT_TEMPLATE).toEqual({
|
|
completed: ["Changed code reviewed", "Truth docs updated", "Notes"],
|
|
skipped: ["Reason"],
|
|
blocked: ["Reason", "Files requiring manual review", "Next action"],
|
|
});
|
|
});
|
|
});
|