docs: test fixtures README and ADR-006 cleanup#177
Conversation
Document fixture images and generated artifacts for contributors. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Reviewer's GuideDocuments the purpose and usage of image test fixtures and their generated artifacts via a new README in the test fixtures directory. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
📝 WalkthroughWalkthroughAdded Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
bin/rake snap_diff:clean removes diff artifacts (*.diff.png, *.heatmap.diff.png, snap_diff_report.html) from tmp/ and doc/screenshots/ while keeping baselines. Addresses tmp/ bloat — 262 files accumulated after a development session. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@Rakefile`:
- Around line 40-45: The removal count over-reports because overlapping glob
patterns in patterns produce duplicate paths in removed; deduplicate the matched
file list (e.g., call .uniq on the array returned from flat_map or convert to a
Set) before iterating and before the puts message so FileUtils.rm_f is still
called for each path but puts "Removed #{removed.size}" reports the true number;
update the variables referenced (patterns, removed, FileUtils.rm_f, and the
final puts) to use the deduplicated collection.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
Summary
ADR-006 test simplification is now complete (T1-T8 all resolved across PRs #174 and this one).
Test plan
Generated with Claude Code
Summary by Sourcery
Documentation:
Summary by CodeRabbit
Documentation
Chores