├── .babelrc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ ├── __snapshots__ │ └── thing.js.snap └── thing.js ├── package.json └── thing.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/thing.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/__tests__/__snapshots__/thing.js.snap -------------------------------------------------------------------------------- /__tests__/thing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/__tests__/thing.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /thing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruyadorno/preact-jest-snapshot-test-boilerplate/HEAD/thing.js --------------------------------------------------------------------------------