├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ ├── commands.test.js ├── config.test.js ├── plugin.test.js └── utils │ ├── commands │ └── commands.test.js │ └── text │ ├── __snapshots__ │ ├── applyReplace.test.js.snap │ └── keepKeysFromExpected.test.js.snap │ ├── applyReplace.test.js │ └── keepKeysFromExpected.test.js ├── assets ├── script.js └── styles.css ├── commands.js ├── cypress ├── cypress.json ├── cypress │ ├── fixtures │ │ └── example.json │ ├── integration │ │ ├── __image_snapshots__ │ │ │ ├── screenshot with custom name #0.png │ │ │ ├── toMatchImageSnapshot toMatchImageSnapshot - clipped element #0.png │ │ │ ├── toMatchImageSnapshot toMatchImageSnapshot - element #0.png │ │ │ ├── toMatchImageSnapshot toMatchImageSnapshot - multiple in one test #0.png │ │ │ ├── toMatchImageSnapshot toMatchImageSnapshot - multiple in one test #1.png │ │ │ └── toMatchImageSnapshot toMatchImageSnapshot - whole page #0.png │ │ ├── __snapshots__ │ │ │ └── toMatchSnapshot.spec.js.snap │ │ ├── toMatchImageSnapshot.spec.js │ │ └── toMatchSnapshot.spec.js │ ├── plugins │ │ └── index.js │ └── support │ │ └── index.js ├── package-lock.json ├── package.json └── test-server │ ├── index.js │ └── static │ ├── css │ └── fonts.css │ ├── fonts │ ├── LICENSE.txt │ ├── open-sans-v15-latin-700.woff │ ├── open-sans-v15-latin-700.woff2 │ ├── open-sans-v15-latin-regular.woff │ └── open-sans-v15-latin-regular.woff2 │ ├── input.html │ ├── stub.html │ ├── stub.json │ └── stub2.html ├── docs └── images │ └── cypress-plugin-snapshots.png ├── package.json ├── plugin.js ├── src ├── commands │ ├── commandNames.js │ ├── index.js │ ├── toMatchImageSnapshot.js │ └── toMatchSnapshot.js ├── config.js ├── constants.js ├── dataTypes.js ├── paths.js ├── save │ ├── saveImageSnapshot.js │ └── saveTextSnapshot.js ├── server │ ├── actions.js │ ├── getClientSocket.js │ └── initServer.js ├── tasks │ ├── getFile.js │ ├── index.js │ ├── matchImageSnapshot.js │ ├── matchTextSnapshot.js │ └── taskNames.js ├── ui.js └── utils │ ├── commands │ ├── cleanupSnapshots.js │ ├── getConfig.js │ ├── getSpec.js │ ├── getTaskData.js │ ├── index.js │ └── logMessage.js │ ├── getTestTitle.js │ ├── image │ ├── getImageData.js │ ├── getSnapshotFilename.js │ └── resizeImage.js │ ├── json.js │ ├── snapshotTitles.js │ ├── tasks │ ├── imageSnapshots.js │ └── textSnapshots.js │ └── text │ ├── applyReplace.js │ ├── getSnapshotFilename.js │ ├── keepKeysFromExpected.js │ └── removeExcludedFields.js └── types └── index.d.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/commands.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/__tests__/commands.test.js -------------------------------------------------------------------------------- /__tests__/config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/__tests__/config.test.js -------------------------------------------------------------------------------- /__tests__/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/__tests__/plugin.test.js -------------------------------------------------------------------------------- /__tests__/utils/commands/commands.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/__tests__/utils/commands/commands.test.js -------------------------------------------------------------------------------- /__tests__/utils/text/__snapshots__/applyReplace.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/__tests__/utils/text/__snapshots__/applyReplace.test.js.snap -------------------------------------------------------------------------------- /__tests__/utils/text/__snapshots__/keepKeysFromExpected.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/__tests__/utils/text/__snapshots__/keepKeysFromExpected.test.js.snap -------------------------------------------------------------------------------- /__tests__/utils/text/applyReplace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/__tests__/utils/text/applyReplace.test.js -------------------------------------------------------------------------------- /__tests__/utils/text/keepKeysFromExpected.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/__tests__/utils/text/keepKeysFromExpected.test.js -------------------------------------------------------------------------------- /assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/assets/script.js -------------------------------------------------------------------------------- /assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/assets/styles.css -------------------------------------------------------------------------------- /commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/commands.js -------------------------------------------------------------------------------- /cypress/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress.json -------------------------------------------------------------------------------- /cypress/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/cypress/integration/__image_snapshots__/screenshot with custom name #0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/__image_snapshots__/screenshot with custom name #0.png -------------------------------------------------------------------------------- /cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - clipped element #0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - clipped element #0.png -------------------------------------------------------------------------------- /cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - element #0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - element #0.png -------------------------------------------------------------------------------- /cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - multiple in one test #0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - multiple in one test #0.png -------------------------------------------------------------------------------- /cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - multiple in one test #1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - multiple in one test #1.png -------------------------------------------------------------------------------- /cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - whole page #0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/__image_snapshots__/toMatchImageSnapshot toMatchImageSnapshot - whole page #0.png -------------------------------------------------------------------------------- /cypress/cypress/integration/__snapshots__/toMatchSnapshot.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/__snapshots__/toMatchSnapshot.spec.js.snap -------------------------------------------------------------------------------- /cypress/cypress/integration/toMatchImageSnapshot.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/toMatchImageSnapshot.spec.js -------------------------------------------------------------------------------- /cypress/cypress/integration/toMatchSnapshot.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/integration/toMatchSnapshot.spec.js -------------------------------------------------------------------------------- /cypress/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/cypress/support/index.js -------------------------------------------------------------------------------- /cypress/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/package-lock.json -------------------------------------------------------------------------------- /cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/package.json -------------------------------------------------------------------------------- /cypress/test-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/index.js -------------------------------------------------------------------------------- /cypress/test-server/static/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/css/fonts.css -------------------------------------------------------------------------------- /cypress/test-server/static/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/fonts/LICENSE.txt -------------------------------------------------------------------------------- /cypress/test-server/static/fonts/open-sans-v15-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/fonts/open-sans-v15-latin-700.woff -------------------------------------------------------------------------------- /cypress/test-server/static/fonts/open-sans-v15-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/fonts/open-sans-v15-latin-700.woff2 -------------------------------------------------------------------------------- /cypress/test-server/static/fonts/open-sans-v15-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/fonts/open-sans-v15-latin-regular.woff -------------------------------------------------------------------------------- /cypress/test-server/static/fonts/open-sans-v15-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/fonts/open-sans-v15-latin-regular.woff2 -------------------------------------------------------------------------------- /cypress/test-server/static/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/input.html -------------------------------------------------------------------------------- /cypress/test-server/static/stub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/stub.html -------------------------------------------------------------------------------- /cypress/test-server/static/stub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/stub.json -------------------------------------------------------------------------------- /cypress/test-server/static/stub2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/cypress/test-server/static/stub2.html -------------------------------------------------------------------------------- /docs/images/cypress-plugin-snapshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/docs/images/cypress-plugin-snapshots.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/plugin.js -------------------------------------------------------------------------------- /src/commands/commandNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/commands/commandNames.js -------------------------------------------------------------------------------- /src/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/commands/index.js -------------------------------------------------------------------------------- /src/commands/toMatchImageSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/commands/toMatchImageSnapshot.js -------------------------------------------------------------------------------- /src/commands/toMatchSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/commands/toMatchSnapshot.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/config.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/dataTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/dataTypes.js -------------------------------------------------------------------------------- /src/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/paths.js -------------------------------------------------------------------------------- /src/save/saveImageSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/save/saveImageSnapshot.js -------------------------------------------------------------------------------- /src/save/saveTextSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/save/saveTextSnapshot.js -------------------------------------------------------------------------------- /src/server/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/server/actions.js -------------------------------------------------------------------------------- /src/server/getClientSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/server/getClientSocket.js -------------------------------------------------------------------------------- /src/server/initServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/server/initServer.js -------------------------------------------------------------------------------- /src/tasks/getFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/tasks/getFile.js -------------------------------------------------------------------------------- /src/tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/tasks/index.js -------------------------------------------------------------------------------- /src/tasks/matchImageSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/tasks/matchImageSnapshot.js -------------------------------------------------------------------------------- /src/tasks/matchTextSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/tasks/matchTextSnapshot.js -------------------------------------------------------------------------------- /src/tasks/taskNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/tasks/taskNames.js -------------------------------------------------------------------------------- /src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/ui.js -------------------------------------------------------------------------------- /src/utils/commands/cleanupSnapshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/commands/cleanupSnapshots.js -------------------------------------------------------------------------------- /src/utils/commands/getConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/commands/getConfig.js -------------------------------------------------------------------------------- /src/utils/commands/getSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/commands/getSpec.js -------------------------------------------------------------------------------- /src/utils/commands/getTaskData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/commands/getTaskData.js -------------------------------------------------------------------------------- /src/utils/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/commands/index.js -------------------------------------------------------------------------------- /src/utils/commands/logMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/commands/logMessage.js -------------------------------------------------------------------------------- /src/utils/getTestTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/getTestTitle.js -------------------------------------------------------------------------------- /src/utils/image/getImageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/image/getImageData.js -------------------------------------------------------------------------------- /src/utils/image/getSnapshotFilename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/image/getSnapshotFilename.js -------------------------------------------------------------------------------- /src/utils/image/resizeImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/image/resizeImage.js -------------------------------------------------------------------------------- /src/utils/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/json.js -------------------------------------------------------------------------------- /src/utils/snapshotTitles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/snapshotTitles.js -------------------------------------------------------------------------------- /src/utils/tasks/imageSnapshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/tasks/imageSnapshots.js -------------------------------------------------------------------------------- /src/utils/tasks/textSnapshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/tasks/textSnapshots.js -------------------------------------------------------------------------------- /src/utils/text/applyReplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/text/applyReplace.js -------------------------------------------------------------------------------- /src/utils/text/getSnapshotFilename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/text/getSnapshotFilename.js -------------------------------------------------------------------------------- /src/utils/text/keepKeysFromExpected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/text/keepKeysFromExpected.js -------------------------------------------------------------------------------- /src/utils/text/removeExcludedFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/src/utils/text/removeExcludedFields.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meinaart/cypress-plugin-snapshots/HEAD/types/index.d.ts --------------------------------------------------------------------------------