Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
laurigates avatar

Property Based Testing

  • 69 installs
  • 49 repo stars
  • Updated August 4, 2026
  • laurigates/claude-plugins

Helps with testing & qa tasks.

About

property-based-testing is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted development.

  • property-based-testing
  • Testing & QA
  • AI-coding skill

Property Based Testing by the numbers

  • 69 all-time installs (skills.sh)
  • Ranked #1,099 of 2,153 Testing & QA skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/laurigates/claude-plugins --skill property-based-testing

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs69
repo stars49
Last updatedAugust 4, 2026
Repositorylaurigates/claude-plugins

What it does

Helps with testing & qa tasks.

Files

SKILL.mdMarkdownGitHub ↗

Property-Based Testing

Expert knowledge for property-based testing - automatically generating test cases to verify code properties rather than testing specific examples.

When to Use This Skill

Use this skill when...Use another skill instead when...
Testing mathematical properties (commutative, associative)Writing specific example-based unit tests
Testing encode/decode roundtripsSetting up test runner configuration
Finding edge cases automaticallyDoing E2E browser testing
Validating data transformations and invariantsAnalyzing test quality or smells
Testing API contracts with generated dataRunning mutation testing

Core Expertise

Property-Based Testing Concept

  • Traditional testing: Test specific examples
  • Property-based testing: Test properties that should hold for all inputs
  • Generators: Automatically create diverse test inputs
  • Shrinking: Minimize failing cases to simplest example
  • Coverage: Explore edge cases humans might miss

When to Use Property-Based Testing

  • Mathematical operations (commutative, associative properties)
  • Encoders/decoders (roundtrip properties)
  • Parsers and serializers
  • Data transformations
  • API contracts
  • Invariants and constraints

TypeScript/JavaScript (fast-check)

Installation

# Using Bun
bun add -d fast-check

# Using npm
npm install -D fast-check

Basic Example

import { test } from 'vitest'
import * as fc from 'fast-check'

// Property-based test
test('reverse twice returns original - property based', () => {
  fc.assert(
    fc.property(
      fc.array(fc.integer()), // Generate random arrays of integers
      (arr) => {
        expect(reverse(reverse(arr))).toEqual(arr)
      }
    )
  )
})
// fast-check automatically generates 100s of test cases!

Key Generators (Quick Reference)

GeneratorDescription
fc.integer()Any integer (with optional min/max)
fc.nat()Natural numbers (>= 0)
fc.float() / fc.double()Floating-point numbers
fc.string()Any string (with optional length)
fc.emailAddress()Email format strings
fc.array(arb)Arrays of arbitrary type
fc.record({...})Object with typed fields
fc.boolean()Boolean values
fc.constantFrom(...)Pick from options
fc.tuple(...)Fixed-size tuples
fc.oneof(...)Union types
fc.option(arb)Value or null
fc.date()Date objects

Common Properties to Test

PropertyPatternExample
Roundtripf(g(x)) = xencode/decode, serialize/parse
Idempotencef(f(x)) = f(x)sort, normalize, format
Commutativityf(a,b) = f(b,a)add, merge, union
Associativityf(f(a,b),c) = f(a,f(b,c))add, concat
Identityf(x, id) = xmultiply by 1, add 0
Inversef(g(x)) = xencrypt/decrypt

Configuration

fc.assert(property, {
  numRuns: 1000,      // Run 1000 tests (default: 100)
  seed: 42,           // Reproducible tests
  endOnFailure: true, // Stop after first failure
})

Preconditions

fc.pre(b !== 0) // Skip cases where b is 0

Python (Hypothesis)

Installation

# Using uv
uv add --dev hypothesis pytest

# Optional extensions
uv add --dev hypothesis[numpy]   # NumPy strategies
uv add --dev hypothesis[django]  # Django model strategies

Configuration

# pyproject.toml
[tool.hypothesis]
max_examples = 200
deadline = 1000

[tool.hypothesis.profiles.dev]
max_examples = 50
deadline = 1000

[tool.hypothesis.profiles.ci]
max_examples = 500
deadline = 5000
verbosity = "verbose"
# Activate profile in conftest.py
from hypothesis import settings
settings.load_profile("ci")

Basic Example

from hypothesis import given, example, assume
import hypothesis.strategies as st

# Test a property
@given(st.integers(), st.integers())
def test_addition_commutative(a, b):
    assert a + b == b + a

# Add explicit edge cases with @example
@given(st.integers())
@example(0)
@example(-1)
@example(2**31 - 1)
def test_with_explicit_examples(x):
    assert process(x) is not None

Key Strategies (Quick Reference)

StrategyDescription
st.integers()Any integer (with optional bounds)
st.floats()Floating-point numbers
st.text()Any string (with optional size)
st.binary()Byte strings
st.lists(strat)Lists of given strategy
st.sets(strat)Unique value sets
st.dictionaries(k, v)Dictionaries
st.booleans()Boolean values
st.sampled_from(...)Pick from options
st.tuples(...)Fixed-size tuples
st.one_of(...)Union types
st.emails()Valid email addresses
st.uuids()UUID objects
st.dates() / st.datetimes()Date/time values
st.builds(Class, ...)Build objects from strategies

Configuration (Settings)

from hypothesis import given, settings, strategies as st

@settings(max_examples=1000, deadline=None)
@given(st.lists(st.integers()))
def test_with_custom_settings(arr):
    assert sort(arr) == sorted(arr)

Assumptions

from hypothesis import assume
assume(b != 0)  # Skip cases where b is 0

Stateful Testing

Hypothesis supports stateful testing via RuleBasedStateMachine for testing sequences of operations against invariants.

CI Integration

# .github/workflows/test.yml
- name: Run hypothesis tests
  run: |
    uv run pytest \
      --hypothesis-show-statistics \
      --hypothesis-profile=ci \
      --hypothesis-seed=${{ github.run_number }}

- name: Upload hypothesis database
  uses: actions/upload-artifact@v4
  if: failure()
  with:
    name: hypothesis-examples
    path: .hypothesis/

Quick Reference

# Core decorators
@given(strategy)              # Generate test inputs
@example(value)               # Add explicit test case
@settings(max_examples=500)   # Configure behavior

# Key helpers
assume(condition)             # Skip invalid inputs
note(message)                 # Add debug info to failure output
target(value)                 # Guide generation toward value

Agentic Optimizations

ContextCommand
Quick TS testbunx vitest --dots --bail=1 --grep 'property'
Quick Python testuv run pytest -x -q --tb=short -k 'property'
CI TS testbunx vitest run --reporter=junit --grep 'property'
CI Python testuv run pytest --hypothesis-profile=ci --hypothesis-show-statistics -q
Reproduciblefc.assert(prop, { seed: 42 }) or pytest --hypothesis-seed=42
Fast iterationfc.assert(prop, { numRuns: 50 }) or pytest --hypothesis-profile=dev -x
Debug failingpytest -x -s --hypothesis-verbosity=debug
No shrinkingAdd phases=[Phase.generate] to @settings

For detailed examples, advanced patterns, and best practices, see REFERENCE.md.

See Also

  • vitest-testing - Unit testing framework
  • python-testing - Python pytest testing
  • test-quality-analysis - Detecting test smells
  • mutation-testing - Validate test effectiveness

References

  • fast-check: https://fast-check.dev/
  • Hypothesis: https://hypothesis.readthedocs.io/
  • Property-Based Testing: https://fsharpforfunandprofit.com/posts/property-based-testing/

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.