Add Storyshots stories to demo storyshots with image

This commit is contained in:
Thomas Bertet 2018-03-08 09:44:15 +01:00
parent ce0ae13343
commit 015d49b8a8
83 changed files with 12 additions and 1 deletions

View File

@ -19,12 +19,13 @@ if (!fs.existsSync(pathToStorybookStatic)) {
} else {
initStoryshots({
suite: 'Image snapshots',
storyKindRegex: /^Addons\|Storyshots/,
framework: 'react',
configPath: path.join(__dirname, '..'),
test: imageSnapshot({
storybookUrl: `file://${pathToStorybookStatic}`,
getMatchOptions: () => ({
failureThreshold: 0.06, // 6% threshold,
failureThreshold: 0.02, // 2% threshold,
failureThresholdType: 'percent',
}),
beforeScreenshot: (page, { context }) => {

View File

@ -0,0 +1,10 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
import BaseButton from '../components/BaseButton';
const text = 'Testing the storyshots addon';
storiesOf('Addons|Storyshots', module)
.add('Default', () => <BaseButton label="" />)
.add('Label', () => <BaseButton label={text} />)
.add('Disabled', () => <BaseButton disabled label={text} />);