mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 21:01:52 +00:00
Extends --full-test-name to accept multiple values, allowing users to run several specific tests in a single command without regex overhead. Features: - Multiple --full-test-name arguments: --full-test-name "test1" --full-test-name "test2" - OR logic: matches any of the provided test names - Proper error messages for single vs multiple names - Comprehensive test coverage for all scenarios Usage examples: bun test --full-test-name "auth login test" --full-test-name "user profile test" bun test --full-test-name "test1" --full-test-name "test2" --full-test-name "test3" 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>