├── .all-contributorsrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmrc ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── jest.config.js ├── other ├── CODE_OF_CONDUCT.md ├── EXAMPLES.md ├── MAINTAINING.md ├── ROADMAP.md ├── manual-releases.md ├── screenshot.png └── setup-test-framework.js ├── package.json └── src ├── __tests__ ├── __snapshots__ │ ├── dom-nodes.js.snap │ ├── example.js.snap │ ├── serializer.js.snap │ └── snapshot-diff.js.snap ├── dom-nodes.js ├── example.js ├── matchers.js ├── replace-selectors.js ├── serializer.js ├── snapshot-diff.js └── utils.js ├── matchers.js ├── replace-selectors.js ├── serializer.js └── utils.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/jest.config.js -------------------------------------------------------------------------------- /other/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/other/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /other/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/other/EXAMPLES.md -------------------------------------------------------------------------------- /other/MAINTAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/other/MAINTAINING.md -------------------------------------------------------------------------------- /other/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/other/ROADMAP.md -------------------------------------------------------------------------------- /other/manual-releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/other/manual-releases.md -------------------------------------------------------------------------------- /other/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/other/screenshot.png -------------------------------------------------------------------------------- /other/setup-test-framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/other/setup-test-framework.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/dom-nodes.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/__snapshots__/dom-nodes.js.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/example.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/__snapshots__/example.js.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/serializer.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/__snapshots__/serializer.js.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/snapshot-diff.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/__snapshots__/snapshot-diff.js.snap -------------------------------------------------------------------------------- /src/__tests__/dom-nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/dom-nodes.js -------------------------------------------------------------------------------- /src/__tests__/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/example.js -------------------------------------------------------------------------------- /src/__tests__/matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/matchers.js -------------------------------------------------------------------------------- /src/__tests__/replace-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/replace-selectors.js -------------------------------------------------------------------------------- /src/__tests__/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/serializer.js -------------------------------------------------------------------------------- /src/__tests__/snapshot-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/snapshot-diff.js -------------------------------------------------------------------------------- /src/__tests__/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/__tests__/utils.js -------------------------------------------------------------------------------- /src/matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/matchers.js -------------------------------------------------------------------------------- /src/replace-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/replace-selectors.js -------------------------------------------------------------------------------- /src/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/serializer.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/jest-glamor-react/HEAD/src/utils.js --------------------------------------------------------------------------------