feat: test file parser, config file handler, moved symbol detection#11
Merged
feat: test file parser, config file handler, moved symbol detection#11
Conversation
…ection - isTestFile / isConfigFile: detect .test.ts and *.config.ts filenames - extractTestCases: parse describe/it blocks from diff lines - generateTestFileSummary: group test cases by suite with +/- markers - generateReaderMarkdown: route test/config files to dedicated handlers before the standard symbol pipeline - moved detection: symbols removed from a file but appearing in newly added imports are reclassified as 📦 moved rather than ❌ removed - STATUS_ICON/LABEL: add 'moved' entry (📦 / 다른 파일로 이동됨) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
📖 PR #11 — feat: test file parser, config file handler, moved symbol detection
📄
|
3rdflr
added a commit
that referenced
this pull request
Feb 23, 2026
feat: test file parser, config file handler, moved symbol detection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.test.ts감지 후describe/it블록을 파싱해 suite별로 그룹화된 테스트 케이스 목록 출력vitest.config.ts등 설정 파일은 플러그인/설정 import 변화만 간결하게 출력❌ 제거됨대신📦 다른 파일로 이동됨으로 재분류Before / After
Before (formatters.test.ts)
After
Test plan
.test.ts파일에서 describe/it 블록이 올바르게 파싱되는지 확인vitest.config.ts파일에서 설정값 변화만 출력되는지 확인moved로 표시되는지 확인🤖 Generated with Claude Code