├── .gitignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── __tests__ ├── __snapshots__ │ ├── createSerializer.js.snap │ └── index.js.snap ├── createSerializer.js └── index.js ├── bin ├── publish.sh └── release-branch.sh ├── createSerializer.js ├── index.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/createSerializer.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/__tests__/__snapshots__/createSerializer.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/__tests__/__snapshots__/index.js.snap -------------------------------------------------------------------------------- /__tests__/createSerializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/__tests__/createSerializer.js -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /bin/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/bin/publish.sh -------------------------------------------------------------------------------- /bin/release-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/bin/release-branch.sh -------------------------------------------------------------------------------- /createSerializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/createSerializer.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/jest-serializer-html/HEAD/yarn.lock --------------------------------------------------------------------------------