Total 50,359 skills, Testing & QA has 1774 skills
Showing 10 of 1774 skills
Test Plan - creates a manual test plan with traceable test cases from specification documents. Use when preparing to verify a feature implementation.
Rebase E2E test snapshots based on failed tests from the PR comments.
Test quality guard - prevents testing mock behavior, production pollution with test-only methods, and mocking without understanding dependencies.
Flaky test fix pattern - replaces arbitrary timeouts with condition polling that waits for actual state changes.
Identify and fix flaky E2E tests by running them repeatedly and investigating failures.
Checks that test method and function names read as complete sentences describing behavior. Flags cryptic names like test1, testFoo, or abbreviated names that do not describe what is being tested. Designed to run on every PR. Do NOT use for test coverage, test structure, or non-test code.
Reproduce a bug from a Linear ticket with a failing test. Expects the full ticket context (title, description, comments) to be provided as input.
Write focused controller tests using HTTP assertions; keep heavy logic in Actions/Services and unit test them
Apply RED-GREEN-REFACTOR with Pest or PHPUnit; use factories, feature tests for HTTP, and parallel test runners; verify failures before implementation
Generic E2E patterns with Playwright—state setup, seeds, test IDs, auth, environment, and Sail integration