category focus

Testing

Unit, integration, and e2e testing.

4139 skillsall categories
sorting
stars
current ordering strategy
query
all entries
refine the visible subset
testing
0

implement-feature

Implement feature code to make BDD scenarios pass. Write production code that satisfies Given/When/Then scenarios. Use after implement-step-definitions when step definitions exist but scenarios are failing.

foolishimp
foolishimp
testing-security
open
testing
0

writing-test-plans

Creates risk-based test plans and strategies. Use when planning testing, defining test scope, or documenting QA approach.

jkappers
jkappers
testing-security
open
testing
0

run-tests

测试执行流程。触发词:测试、test、运行测试。

kexin94yyds
kexin94yyds
testing-security
open
testing
0

oe-mcp-bootstrap

Setup and verification for MCP tooling used in OpenEvent-AI (filesystem, Context7 docs, LSP/Pyright, Playwright). Use when onboarding a new developer/agent or when Codex/Claude cannot access LSP, browser automation, or docs.

shami-ah
shami-ah
testing-security
open
testing
0

writing-playwright-tests

Provides patterns for writing maintainable E2E test scripts with Playwright, focusing on selector strategies, page objects, and wait handling for legacy application retrofitting.

FortiumPartners
FortiumPartners
testing-security
open
testing
0

tdd

Test-Driven Development following Kent Beck's TDD and Tidy First principles. Use when implementing features with test-first approach, following Red-Green-Refactor cycle, or separating structural changes from behavioral changes in commits.

seungwonme
seungwonme
testing-security
open
testing
0

android-unit-testing

Run Android JVM unit tests via Gradle, collect reports, and fix failures. Use when asked to run/repair unit tests or CI test failures.

jtakumi
jtakumi
testing-security
open
testing
0

cucumber-gherkin

Comprehensive BDD testing with Cucumber and Gherkin syntax. Use when writing feature files (.feature), step definitions, hooks, or implementing Behaviour-Driven Development. Covers Gherkin keywords (Feature, Scenario, Given/When/Then, Background, Scenario Outline, Rule), step definition patterns for Ruby/JavaScript/Java/Python, hooks (Before/After/BeforeAll/AfterAll), tags, data tables, doc strings, and best practices. Triggers on cucumber, gherkin, BDD, feature files, step definitions, acceptance testing, executable specifications.

el-feo
el-feo
testing-security
open
testing
0

allure-reporting

Guide for working with Allure test reporting in this Cucumber project. Use this when asked about test reports, adding annotations, or improving test documentation.

RubenDguez
RubenDguez
testing-security
open
testing
0

spock-testing

Use when writing or refactoring Spock tests in Java projects - enforces data-driven testing with where blocks, proper mock/stub placement, and descriptive test names following Spock best practices

mbarbieri
mbarbieri
testing-security
open
testing
0

playwright-bdd-analyzer

Playwright-BDD/Cucumberテストの品質分析スキル。 以下の場合に使用: (1) .featureファイルのレビュー・品質チェック時 (2) ステップ定義の再利用性分析時 (3) シナリオ網羅性の確認時 (4) E2Eテスト実行結果の分析時 (5) テストの保守性評価時

tailwind8
tailwind8
testing-security
open
testing
0

composable-svelte-testing

Testing patterns for Composable Svelte. Use when writing tests, using TestStore, mocking dependencies, or testing reducers and effects. Covers the send/receive pattern, mock implementations, testing composition strategies, and testing best practices.

jonathanbelolo
jonathanbelolo
testing-security
open
testing
0

vitest-browser-react

Read this when you are testing React Component with Vitest Browser Mode tests. Test file extension is expected to `.browser.test.{ts,tsx}`.

sushichan044
sushichan044
testing-security
open
testing
0

code-sentinel

Use when code pattern tests fail - fixes recurring anti-patterns with documented root causes and verification

Mharbulous
Mharbulous
testing-security
open
testing
0

generate-step-stubs

Auto-generates Python step definition stubs from Gherkin feature files for BDD testing with Behave. Uses Behave's parser for accurate Gherkin parsing, intelligently infers parameter types, detects existing step definitions to suggest reuse, and supports data tables and doc strings. Creates ready-to-implement step definitions with proper type hints.

lilliangreenberg
lilliangreenberg
testing-security
open
testing
0

verify-app

Validate application behavior with tests and manual verification steps. Use after feature changes or before deploys.

whywaita
whywaita
testing-security
open
testing
0

tdd

Implements features using Test-Driven Development methodology following the red-green-refactor cycle. Use when user explicitly requests TDD approach or asks to implement features test-first.

mjanv
mjanv
testing-security
open
testing
0

tdd

테스트 시나리오 기반 TDD 개발. 시나리오 파일의 체크박스를 하나씩 테스트 코드로 구현. "TDD로 개발", "테스트 먼저 작성", "시나리오 구현" 요청 시 사용

hoonsmemory
hoonsmemory
testing-security
open
testing
0

ui-visual-regression

Run a minimal, repeatable UI visual regression pipeline (Storybook build + Playwright capture + Argos diff) and iterate on targeted UI fixes until visual diffs pass. If design-system guidance, tokens, or component standards are needed, consult the skill.. Use when Investigating visual diffs in Storybook/Argos pipelines..

jscraik
jscraik
testing-security
open
testing
0

nx-monorepo-generator

Use when adding Jest testing configuration to Nx projects, running `nx g @nx/jest:configuration`, setting up testing infrastructure, or troubleshooting tests that fail after running the Jest generator. Ensures proper TypeScript moduleResolution (nodenext), testing enhancement libraries (jest-dom, user-event, MSW), and monorepo pattern adherence. Triggers: "add tests", "setup Jest", "configure testing", "Jest not working", "moduleResolution error", "tests failing after generator"

cognoco
cognoco
testing-security
open
testing
0

testing-best-practices

Comprehensive guide to writing effective unit, integration, and end-to-end tests with modern testing frameworks

OmerMachluf
OmerMachluf
testing-security
open
testing
0

aico-frontend-implement

Execute frontend implementation with TDD. Read all constraint files before coding, write failing test first, verify after each step. Use this skill when: - User asks to "implement this", "implement the plan", "start implementation", "execute plan" - Have an implementation plan ready and need to execute it - Executing steps from /frontend.plan output - User says "start coding", "write the code", "begin implementation" - User asks to "use TDD", "write test first", "test-driven" for frontend code - User asks to "write tests", "add tests", "create tests" - Fixing UI bugs (write failing test that reproduces bug first) TDD Iron Law: NO PRODUCTION CODE WITHOUT A FAILING TEST FIRST TDD Cycle: RED (write failing test) → Verify fails → GREEN (minimal code) → Verify passes → REFACTOR Prerequisites: - MUST have task file in docs/reference/frontend/tasks/ (use /frontend.tasks first if not exists) - MUST read design-system.md, constraints.md, and design spec before writing any code. Flow: Check Task File → Read Constrai

yellinzero
yellinzero
testing-security
open
testing
0

testing-best-practices

Unit testing, integration testing, and test-driven development principles. Use when writing tests, reviewing test code, improving test coverage, or setting up testing strategy. Triggers on "write tests", "review tests", "testing best practices", or "TDD".

AsyrafHussin
AsyrafHussin
testing-security
open
Previous
Page 163 / 173
Next