Run tests
Security-audited skills for Claude, Codex & Claude Code. One-click install, quality verified.
npx -y skills add aiskillstore/marketplace --skill run-testsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
How to run tests in this project. Load when implementing or verifying code.
SKILL.md
0.8 KB, as published. Nobody here has run it
Run Tests Skill
Project-specific test execution.
Test Commands
# Run all tests
# TODO: Add your test command
npm test
# pytest
# go test ./...
# cargo test
# Run specific file
# TODO: Add your pattern
npm test -- --testPathPattern={file}
# pytest {file} -v
# Run affected tests
npm test -- --changedSince=HEAD
Test Patterns
- Test files:
**/*.test.tsor**/__tests__/*.ts - Test naming:
describe('Component', () => { it('should...') })
Coverage
# Run with coverage
npm test -- --coverage
Debugging Failed Tests
- Read the error message
- Check the test file
- Check the source file
- Run single test in isolation