-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Description
Test utilities are split between cli/test-helpers.ts and test-utils/ directory, making it unclear where to add new test utilities or find existing ones.
Exploration needed:
- Audit contents of cli/test-helpers.ts - what does it provide?
- Audit contents of test-utils/ - what does it provide?
- Check if mcp/test-helpers.ts also exists
- Determine if separation is intentional (CLI-specific helpers vs general)
- Review how tests currently import these utilities
- Check for any duplicate or overlapping functionality
Options:
a) Move everything to test-utils/ with subdirectories if needed
b) Keep separation but document clearly when to use which
c) Create test-utils/index.ts that re-exports everything
Goal: Clear convention for where test utilities live and how to import them.
Reactions are currently unavailable