Skip to content

Instantly share code, notes, and snippets.

@csouchet
Created March 24, 2021 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csouchet/5952bffac22eb46a7fe7b46d20f7ca7a to your computer and use it in GitHub Desktop.
Save csouchet/5952bffac22eb46a7fe7b46d20f7ca7a to your computer and use it in GitHub Desktop.
Change failureThreshold of jest-image-snapshot
// jest-image-snapshot custom configuration
function getConfig () {
return {
// …,
// anything less than 0.5 percent difference passes as the same
failureThreshold: 0.005,
failureThresholdType: 'percent',
};
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment