Skip to content
TestingModesModesUnitFuzz

Fuzz

What it is

Adversarial / random input testing. Seeded mutation: take a base corpus, randomly mutate, report any input that triggers an exception or violates a guard predicate.

When to use it

Robustness against weird / hostile inputs (unicode, prototype-pollution-shaped names, etc.).

Example gates

dispatcher-fuzz — found a real prototype-pollution bug on first run.

See also

On this page