test(doctor): add test for beads.base.jsonl merge artifacts (bd-ov1)

Verify that beads.base.jsonl and beads.left.jsonl patterns are correctly
excluded from the 'multiple JSONL files' warning, same as issues.base.jsonl.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-11-28 21:52:48 -08:00
parent f493ca41c1
commit eeab5e55e3
2 changed files with 77 additions and 71 deletions

View File

@@ -243,6 +243,12 @@ func TestCheckLegacyJSONLFilename(t *testing.T) {
expectedStatus: "ok",
expectWarning: false,
},
{
name: "beads merge artifacts ignored (bd-ov1)",
files: []string{"issues.jsonl", "beads.base.jsonl", "beads.left.jsonl"},
expectedStatus: "ok",
expectWarning: false,
},
}
for _, tt := range tests {