From 1b01edffd4e86ebe9f2eb3e804c5cf419e26332f Mon Sep 17 00:00:00 2001 From: Gorkem Date: Thu, 30 Jul 2026 13:14:50 +0300 Subject: [PATCH] test: standardize fixtures on synthetic scenario data --- test/grounding-rejudge.test.mjs | 2 +- test/reflection-mapped-category-stamping.test.mjs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/grounding-rejudge.test.mjs b/test/grounding-rejudge.test.mjs index 218fde34..8dfd7378 100644 --- a/test/grounding-rejudge.test.mjs +++ b/test/grounding-rejudge.test.mjs @@ -636,7 +636,7 @@ async function runTest() { category: "events", abstract: "Ran a three-hour tabletop session on Sunday", overview: "## Event\n- Three-hour tabletop session", - content: "Ran a three-hour tabletop session on Sunday evening.", + content: "Ran a three-hour tabletop session on Thursday morning.", grounding: "real", }, { diff --git a/test/reflection-mapped-category-stamping.test.mjs b/test/reflection-mapped-category-stamping.test.mjs index 315a4420..3222ed2f 100644 --- a/test/reflection-mapped-category-stamping.test.mjs +++ b/test/reflection-mapped-category-stamping.test.mjs @@ -150,8 +150,8 @@ describe("reflection-item write-time L0/L1/L2 minting", () => { it("mints the three levels for invariant and derived rows, section-based overview", () => { const payloads = buildReflectionItemPayloads({ items: [ - { itemKind: "invariant", section: "Invariants", ordinal: 0, groupSize: 2, text: "Always verify ids before deleting" }, - { itemKind: "derived", section: "Derived", ordinal: 1, groupSize: 2, text: "User mixes real facts into roleplay asides" }, + { itemKind: "invariant", section: "Invariants", ordinal: 0, groupSize: 2, text: "Always confirm handles before archiving" }, + { itemKind: "derived", section: "Derived", ordinal: 1, groupSize: 2, text: "User alternates trivia answers with puzzle asides" }, ], eventId: "refl-test-1", agentId: "agent-one", @@ -163,10 +163,10 @@ describe("reflection-item write-time L0/L1/L2 minting", () => { }); assert.equal(payloads.length, 2); const [inv, der] = payloads; - assert.equal(inv.metadata.l0_abstract, "Always verify ids before deleting"); - assert.equal(inv.metadata.l1_overview, "## Invariants\n- Always verify ids before deleting"); - assert.equal(inv.metadata.l2_content, "Always verify ids before deleting"); - assert.equal(der.metadata.l1_overview, "## Derived\n- User mixes real facts into roleplay asides"); + assert.equal(inv.metadata.l0_abstract, "Always confirm handles before archiving"); + assert.equal(inv.metadata.l1_overview, "## Invariants\n- Always confirm handles before archiving"); + assert.equal(inv.metadata.l2_content, "Always confirm handles before archiving"); + assert.equal(der.metadata.l1_overview, "## Derived\n- User alternates trivia answers with puzzle asides"); assert.notEqual(der.metadata.l1_overview, der.metadata.l0_abstract, "the overview must carry section context, not echo the line"); }); });