├── .babelrc ├── .cache └── 325c8f456729b912b0d2134054eb7448-dfeeb2271cc2857eb0a45a5003c8bbee ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc ├── .storybook ├── addons.js └── config.js ├── .travis.yml ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── App.e2e.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── dist └── index.html ├── package.json ├── src ├── App.js ├── App.snapshot.js ├── App.spec.js ├── Checkbox │ ├── index.js │ └── stories.js ├── __image_snapshots__ │ ├── app-snapshot-js-storyshots-checkbox-with-checked-1-snap.png │ ├── app-snapshot-js-storyshots-checkbox-with-iphone-6-plus-1-snap.png │ ├── app-snapshot-js-storyshots-checkbox-with-medium-1-snap.png │ └── app-snapshot-js-storyshots-checkbox-with-unchecked-1-snap.png ├── __snapshots__ │ └── App.snapshot.js.snap └── index.js ├── test ├── dom.js ├── helpers.js ├── jest.config.json └── jest.setup.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/.babelrc -------------------------------------------------------------------------------- /.cache/325c8f456729b912b0d2134054eb7448-dfeeb2271cc2857eb0a45a5003c8bbee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/.cache/325c8f456729b912b0d2134054eb7448-dfeeb2271cc2857eb0a45a5003c8bbee -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/.storybook/addons.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/App.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/cypress/integration/App.e2e.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/dist/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/App.snapshot.js -------------------------------------------------------------------------------- /src/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/App.spec.js -------------------------------------------------------------------------------- /src/Checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/Checkbox/index.js -------------------------------------------------------------------------------- /src/Checkbox/stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/Checkbox/stories.js -------------------------------------------------------------------------------- /src/__image_snapshots__/app-snapshot-js-storyshots-checkbox-with-checked-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/__image_snapshots__/app-snapshot-js-storyshots-checkbox-with-checked-1-snap.png -------------------------------------------------------------------------------- /src/__image_snapshots__/app-snapshot-js-storyshots-checkbox-with-iphone-6-plus-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/__image_snapshots__/app-snapshot-js-storyshots-checkbox-with-iphone-6-plus-1-snap.png -------------------------------------------------------------------------------- /src/__image_snapshots__/app-snapshot-js-storyshots-checkbox-with-medium-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/__image_snapshots__/app-snapshot-js-storyshots-checkbox-with-medium-1-snap.png -------------------------------------------------------------------------------- /src/__image_snapshots__/app-snapshot-js-storyshots-checkbox-with-unchecked-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/__image_snapshots__/app-snapshot-js-storyshots-checkbox-with-unchecked-1-snap.png -------------------------------------------------------------------------------- /src/__snapshots__/App.snapshot.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/__snapshots__/App.snapshot.js.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/src/index.js -------------------------------------------------------------------------------- /test/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/test/dom.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/test/jest.config.json -------------------------------------------------------------------------------- /test/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/test/jest.setup.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwieruch/visual-regression-testing-react-storybook/HEAD/webpack.config.js --------------------------------------------------------------------------------