# test > Run tests, prioritizing recently modified test files before running the full suite. - Author: Mladen - Repository: mladenrtl/claude-code-ts - Version: 20260130002527 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/mladenrtl/claude-code-ts - Web: https://mule.run/skillshub/@@mladenrtl/claude-code-ts~test:20260130002527 --- --- name: test description: Run tests, prioritizing recently modified test files before running the full suite. argument-hint: [optional: specific test file] context: fork agent: test-runner --- Run tests: $ARGUMENTS Start with recently modified tests, then run full suite. ## Test Commands ```bash npm test # Run all tests with coverage npm test -- --watch # Watch mode for development npm test -- path/to/file.test.ts # Run a single test file npm test -- --updateSnapshot # Update Jest snapshots ``` ## Test Execution Strategy 1. **Identify recently modified tests**: Check git status for modified test files 2. **Run targeted tests first**: Execute tests for recently changed files 3. **Run full suite**: Confirm no regressions across the codebase 4. **Report results**: Summarize pass/fail status and coverage ## Checklist - [ ] Recent tests identified - [ ] Targeted tests executed - [ ] Full suite run - [ ] Failures analyzed and reported