├── .babelrc ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── Semgrep.yml │ ├── changelog.yml │ ├── lint.yml │ ├── release.yml │ ├── stale.yml │ ├── test.yml │ └── typecheck.yml ├── .gitignore ├── .nycrc ├── CODEOWNERS ├── LICENSE ├── README.md ├── createRegion.js ├── cypress.config.js ├── cypress ├── e2e │ └── index.cy.js ├── plugins │ └── index.js └── support │ └── e2e.js ├── index.js ├── package.json ├── types ├── index.d.ts └── index.test-d.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/Semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/workflows/Semgrep.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/typecheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.github/workflows/typecheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | coverage 4 | cypress/fixtures 5 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/.nycrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/README.md -------------------------------------------------------------------------------- /createRegion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/createRegion.js -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/index.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/cypress/e2e/index.cy.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/package.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/types/index.test-d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/percy-cypress/HEAD/yarn.lock --------------------------------------------------------------------------------