testing▌
322 indexed skills · max 10 per page
pentest-checklist
sickn33/antigravity-awesome-skills · Testing
pentest-checklist
playwright-visual-testing
manutej/luxor-claude-marketplace · Testing
A comprehensive skill for browser automation and visual testing using Playwright MCP server integration. This skill enables rapid UI testing, visual regression detection, automated browser interactions, and cross-browser validation for modern web applications.
flutter-testing-apps
flutter/skills · Testing
Comprehensive testing framework for Flutter apps across unit, widget, and integration test layers. \n \n Covers three test categories: unit tests for isolated logic, widget tests for UI components, and integration tests for end-to-end flows on real devices or emulators \n Provides architectural testing patterns for ViewModels, Repositories, Services, and Views, with emphasis on Fake implementations over mocks for cleaner test design \n Includes plugin testing guidelines combining Dart tests with
test-master
jeffallan/claude-skills · Testing
Comprehensive testing specialist for functional, performance, and security test design and execution. \n \n Covers unit, integration, E2E, performance (k6, Artillery), and security testing (OWASP) with structured workflows from scope definition through reporting \n Enforces test quality standards: meaningful assertions, isolated dependencies, edge-case coverage, and flaky-test remediation \n Provides reference guides for TDD methodology, testing anti-patterns, automation frameworks, and QA pract
golang-testing-strategies
bobmatnyc/claude-mpm-skills · Backend
Go provides a robust built-in testing framework (testing package) that emphasizes simplicity and developer productivity. Combined with community tools like testify and gomock, Go testing enables comprehensive test coverage with minimal boilerplate.
dart-test-fundamentals
kevmoo/dash_skills · Testing
Use this skill when:
webapp-testing
composiohq/awesome-claude-skills · Testing
Native Python Playwright toolkit for testing and debugging local web applications with server lifecycle management. \n \n Includes with_server.py helper script for managing single or multiple server instances automatically during test execution \n Supports reconnaissance-then-action workflow: screenshot/inspect rendered DOM, identify selectors, then execute interactions \n Provides example scripts covering element discovery, static HTML automation, and console log capture \n Emphasizes waiting f
python-testing-patterns
wshobson/agents · Backend
Comprehensive testing strategies for Python using pytest, fixtures, mocking, and test-driven development. \n \n Covers unit, integration, functional, and performance testing with the AAA pattern (Arrange, Act, Assert) for test structure \n Includes 10 fundamental and advanced patterns: basic tests, fixtures with setup/teardown, parameterization, mocking, exception handling, async testing, monkeypatching, temporary files, custom fixtures, and property-based testing \n Provides test design princip
cpp-testing
affaan-m/everything-claude-code · Testing
Modern C++ testing workflow using GoogleTest/GoogleMock with CMake/CTest integration. \n \n Covers unit and integration test design with TDD red-green-refactor loop, fixtures, mocks, and fakes for dependency isolation \n Includes CMake/CTest configuration with automatic test discovery via gtest_discover_tests() and filtering strategies \n Provides coverage setup for GCC (gcov/lcov) and Clang (llvm-cov), plus sanitizer configuration (ASan, UBSan, TSan) for memory and race detection \n Documents f
flutter-testing
flutter/skills · Testing
Generates unit, widget, integration, and plugin tests for Flutter applications with architectural awareness. \n \n Analyzes target code to determine appropriate test type (unit for logic, widget for UI, integration for end-to-end, plugin for native code) \n Provides decision tree and step-by-step implementation patterns for each test category, including fake/mock setup and assertion strategies \n Includes ready-to-use code templates for ViewModels, Repositories, widgets, and full app flows with