feat: connect prepared run and refine presenter notes

This commit is contained in:
lda
2026-07-14 08:59:32 +07:00 Verified
parent 5ba9e55f92
commit 184e41858c
26 changed files with 296 additions and 114 deletions
@@ -114,7 +114,11 @@ describe("defense storyboard catalog", () => {
it("makes the evaluation beat carry the audited counts and validity boundary", () => {
expect(findBeat("evaluation", "cohort")?.caption).toMatch(/36|two challenges|two hosted models|three waves/i);
expect(findBeat("evaluation", "validity")?.caption).toMatch(/27|8|1|audit/i);
const validityCaption = findBeat("evaluation", "validity")?.caption ?? "";
expect(validityCaption).toMatch(/\b27\b/);
expect(validityCaption).toMatch(/\b8\b/);
expect(validityCaption).toMatch(/\b1\b/);
expect(validityCaption).toMatch(/audit/i);
expect(findBeat("evaluation", "findings")?.caption).toMatch(/changing|longitudinal|benchmark/i);
});