testing▌
322 indexed skills · max 10 per page
backtesting-frameworks
sickn33/antigravity-awesome-skills · Testing
$20
encore-testing
encoredev/skills · Testing
Encore.ts uses standard TypeScript testing tools. The recommended setup is Vitest.
ln-634-test-coverage-auditor
levnikolaevich/claude-code-skills · Testing
ln-634-test-coverage-auditor
aws-penetration-testing
sickn33/antigravity-awesome-skills · Cloud
aws-penetration-testing
scaffolding-oracle-to-postgres-migration-test-project
github/awesome-copilot · Testing
Creates a compilable, empty xUnit test project with transaction management and seed data infrastructure for a single target project. Run once per project before writing tests.
write-e2e-tests
tldraw/tldraw · Testing
E2E tests use Playwright. Located in apps/examples/e2e/ (SDK examples) and apps/dotcom/client/e2e/ (tldraw.com).
python-testing
affaan-m/everything-claude-code · Backend
Comprehensive pytest testing strategies with TDD, fixtures, mocking, and coverage best practices. \n \n Covers TDD methodology (red-green-refactor cycle), parametrization, fixtures with multiple scopes, and mocking patterns for unit and integration testing \n Includes pytest fundamentals: assertions, markers for test selection, exception testing, and async test support with pytest-asyncio \n Provides practical patterns for testing APIs, databases, file operations, and class methods with real cod
rust-testing
affaan-m/everything-claude-code · Backend
Comprehensive Rust testing patterns for writing reliable, maintainable tests following TDD methodology.
testing-r-packages
posit-dev/skills · Testing
Modern best practices for R package testing using testthat 3+.
pytest-coverage
github/awesome-copilot · Testing
Run pytest with coverage reporting to identify and eliminate untested code lines. \n \n Generates annotated source files in cov_annotate/ directory, with ! markers indicating uncovered lines \n Supports module-specific coverage checks via --cov=module_name and targeted test runs on specific test files \n Workflow: run coverage, review annotated files for uncovered lines, write tests to cover gaps, repeat until 100% coverage achieved \n