From 3464004f23728be1b1b2e319cad6d7ea683a48f3 Mon Sep 17 00:00:00 2001 From: Thomas Bertet Date: Thu, 1 Mar 2018 10:28:24 +0100 Subject: [PATCH] raise threshold for image snapshots using storyshots --- .../image-snapshots/storyshots-image.runner.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/official-storybook/image-snapshots/storyshots-image.runner.js b/examples/official-storybook/image-snapshots/storyshots-image.runner.js index f9d1933dfa2..216108be9df 100644 --- a/examples/official-storybook/image-snapshots/storyshots-image.runner.js +++ b/examples/official-storybook/image-snapshots/storyshots-image.runner.js @@ -23,6 +23,10 @@ if (!fs.existsSync(pathToStorybookStatic)) { configPath: path.join(__dirname, '..'), test: imageSnapshot({ storybookUrl: `file://${pathToStorybookStatic}`, + getMatchOptions: () => ({ + failureThreshold: 0.01, // 1% threshold, + failureThresholdType: 'percent', + }), beforeScreenshot: (page, { context }) => { // Screenshots for this story have to be tweaked. if (context.kind === 'ui/Layout') {