What Is a Mutation Score Threshold?
A mutation score threshold is a configured minimum for the share of injected code mutations that a test suite catches. Mutation testing deliberately introduces small faults and checks whether tests fail in response; the score is the fraction killed. The threshold fails a build when too many mutations survive undetected.
Why it matters
Mutation score reveals whether tests truly assert behavior, exposing high-coverage suites that never check results. The threshold turns that into an enforceable quality bar, though mutation runs are compute-heavy.
Related guides
What Is a Coverage Gate?A coverage gate is a CI rule that fails a build when test coverage falls below a set threshold, enforcing a m…
What Is Snapshot Approval?Snapshot approval is reviewing and accepting a changed test snapshot, confirming the new output is intended b…
What Is a Test Impact Graph?A test impact graph maps which tests depend on which source files, so a change can run only the affected test…