Back to list
aiskillstore

run-tests

by aiskillstore

Security-audited skills for Claude, Codex & Claude Code. One-click install, quality verified.

102🍴 3📅 Jan 23, 2026

SKILL.md


name: run-tests description: How to run tests in this project. Load when implementing or verifying code. allowed-tools: Bash

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.ts or **/__tests__/*.ts
  • Test naming: describe('Component', () => { it('should...') })

Coverage

# Run with coverage
npm test -- --coverage

Debugging Failed Tests

  1. Read the error message
  2. Check the test file
  3. Check the source file
  4. Run single test in isolation

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

+5
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon