├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── cypress.config.ts ├── cypress ├── fixtures │ └── example.json ├── integration │ ├── error-callback.spec.ts │ ├── example.spec.ts │ ├── example2.spec.ts │ └── retry.spec.ts └── support │ └── e2e.ts ├── jest.config.js ├── lib ├── commands.ts ├── index.ts ├── plugin.ts ├── types.ts └── utils.ts ├── package.json └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/error-callback.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/cypress/integration/error-callback.spec.ts -------------------------------------------------------------------------------- /cypress/integration/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/cypress/integration/example.spec.ts -------------------------------------------------------------------------------- /cypress/integration/example2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/cypress/integration/example2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/retry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/cypress/integration/retry.spec.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/lib/commands.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/lib/plugin.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visual-Regression-Tracker/agent-cypress/HEAD/tsconfig.json --------------------------------------------------------------------------------