testing▌
321 indexed skills · max 10 per page
unit-test-caching
giuseppe-trisciuoglio/developer-kit · Testing
Testing Spring Cache annotations without external infrastructure using in-memory cache managers. \n \n Covers testing @Cacheable , @CacheEvict , and @CachePut annotations with patterns for verifying cache hits, misses, and invalidation \n Uses ConcurrentMapCacheManager for fast, isolated unit tests instead of Redis or other external caches \n Includes verification strategies via mock call counts, conditional caching with unless and condition parameters, and custom cache key generation with SpEL
api-contract-testing
aj-geddes/useful-ai-prompts · Backend
Contract testing verifies that APIs honor their contracts between consumers and providers. It ensures that service changes don't break dependent consumers without requiring full integration tests. Contract tests validate request/response formats, data types, and API behavior independently.
unit-test-application-events
giuseppe-trisciuoglio/developer-kit · Testing
Testing Spring ApplicationEvent publishers and listeners with mocked dependencies and event capture patterns. \n \n Mock ApplicationEventPublisher in unit tests and use ArgumentCaptor to verify published events and their data integrity \n Test @EventListener method invocation directly by instantiating listeners and invoking handler methods with captured events \n Handle asynchronous event processing with Thread.sleep() or Awaitility to verify async listener completion \n Verify listener side eff
mobile-app-testing
aj-geddes/useful-ai-prompts · Testing
Comprehensive testing strategies for iOS and Android mobile apps across unit, UI, integration, and performance layers. \n \n Covers unit testing with Jest, component testing with React Testing Library, and UI automation using Detox, Appium, XCTest, and Espresso \n Includes performance testing, regression testing, and integration testing with backend services \n Provides best practices for test isolation, mocking, meaningful naming, and >80% code coverage targets \n Emphasizes testing on real dev
playwright-mcp-dev
microsoft/playwright · Testing
Developer guide for extending Playwright MCP tools and CLI commands. \n \n Add new MCP tools in packages/playwright/src/mcp/browser/tools/ , register in tools.ts , and define capabilities in config.d.ts \n CLI commands map to MCP tools; register new commands in packages/playwright/src/mcp/terminal/commands.ts and update help generator if adding a category \n Config options require updates across program.ts (CLI option), config.d.ts (definition), and config.ts (implementation and environment mapp
spring-boot-test-patterns
giuseppe-trisciuoglio/developer-kit · Testing
Comprehensive testing patterns for Spring Boot applications covering unit, slice, integration, and container-based tests. \n \n Covers four test types with performance targets: unit tests (< 50ms), slice tests (< 100ms), integration tests (< 500ms), and full context tests with Testcontainers \n Includes patterns for Mockito-based unit testing, JPA/MVC slice testing with focused Spring contexts, and REST API testing with MockMvc and WebTestClient \n Demonstrates Spring Boot 3.5+ @S
backtest
marketcalls/vectorbt-backtesting-skills · Testing
Generate complete VectorBT backtesting scripts with data fetch, signals, stats, and plots. \n \n Supports 10+ pre-built strategies (EMA crossover, RSI, Donchian, Supertrend, MACD, SDA2, momentum, and more) with template-based script generation \n Fetches data from OpenAlgo API or loads directly from DuckDB; auto-detects Historify vs custom formats \n Uses TA-Lib for standard indicators and OpenAlgo ta for specialty indicators (Supertrend, Donchian, Ichimoku); includes signal deduplication via ex
test
facebook/react · Testing
Run tests for React codebase across multiple release channels and configurations. \n \n Supports six release channels: source (default), experimental, www, www with variant false, stable, and classic, each with distinct feature flag configurations \n Accepts test patterns, watch mode for TDD, and variant flags to test different code paths \n Requires explicit test pattern argument to avoid running the entire test suite; uses --silent flag to surface failures and --no-watchman for sandboxing comp
run-acceptance-tests
hashicorp/agent-skills · Testing
Execute and diagnose Go acceptance tests for Terraform providers with structured troubleshooting. \n \n Run focused acceptance tests using go test -run=TestAccFeatureHappyPath with TF_ACC=1 environment variable \n Diagnose failures progressively: retry with -count=1 , enable verbose output with -v , activate debug logging via TF_LOG=debug , and persist Terraform workspace with TF_ACC_WORKING_DIR_PERSIST=1 \n Validate test reliability by intentionally breaking a TestCheckFunc, re-running the test
file-test-bug
microsoft/github-copilot-for-azure · Testing
Creates a GitHub issue in microsoft/github-copilot-for-azure for integration test failures.