// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html exports[`formatReviewThreads > formats thread blocks with TOC and correct line numbers > content 1`] = ` "# Review Threads (1) for PR #49 - Review 3485940013 by cursor ## TOC - .github/workflows/test.yml:7 → lines 9-36 --- ## .github/workflows/test.yml:7 [RESOLVED] \`\`\`\`comment author=cursor id=2544544046 review=3485940013 * ### Bug: GitHub Actions workflow triggered for wrong branch The \`pull_request\` trigger specifies \`branches: [mainc]\`, but the \`push\` trigger specifies \`branches: [main]\`. This mismatch means pull requests will only trigger tests if targeting a non-existent \`mainc\` branch rather than the actual \`main\` development branch, preventing CI from running on most pull requests. Fix in Cursor Fix in Web \`\`\`\` \`\`\`diff file=.github/workflows/test.yml lines=7 side=RIGHT @@ -0,0 +1,36 @@ ... (3 lines above) ... + push: + branches: [main] + pull_request: + branches: [main] \`\`\` " `; exports[`formatReviewThreads > formats thread blocks with TOC and correct line numbers > toc 1`] = `"- .github/workflows/test.yml:7 → lines 9-36"`;