├── .eslintrc ├── .gitignore ├── .npmrc ├── .travis.yml ├── .vscode └── settings.json ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── img └── snapshot-mismatch.png ├── issue_template.md ├── package.json ├── renovate.json ├── snapshots.js └── src ├── add-initial-snapshot-file.js ├── index.js ├── snapshot-spec.js └── utils.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log 4 | cypress/videos/ 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/cypress/integration/spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /img/snapshot-mismatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/img/snapshot-mismatch.png -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/issue_template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/renovate.json -------------------------------------------------------------------------------- /snapshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/snapshots.js -------------------------------------------------------------------------------- /src/add-initial-snapshot-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/src/add-initial-snapshot-file.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/src/index.js -------------------------------------------------------------------------------- /src/snapshot-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/src/snapshot-spec.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/snapshot/HEAD/src/utils.js --------------------------------------------------------------------------------