install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/5t111111/testing" ~/.claude/skills/aiskillstore-marketplace-testing && rm -rf "$T"
manifest:
skills/5t111111/testing/SKILL.mdsource content
Testing Skill
This skill provides a guide for testing practices and frameworks.
Testing frameworks
- Use Deno's built-in testing framework for writing and running tests
Writing Tests
- Write tests in separate files with the
extension in the same directory as the code being tested.test.ts - All public functions and methods must have corresponding tests
- Use descriptive names for test cases to clearly indicate their purpose
- Should cover edge cases and error handling in tests
Running Tests
- Use the command
to run all tests in the projectmise run test - Run tests before committing code changes to ensure no tests are failing