├── .eslintrc ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── appveyor-win32-x64.yml ├── appveyor-win32-x86.yml ├── circle.yml ├── package.json ├── renovate.json └── test-repo.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | cypress-example-kitchensink/ 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/README.md -------------------------------------------------------------------------------- /appveyor-win32-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/appveyor-win32-x64.yml -------------------------------------------------------------------------------- /appveyor-win32-x86.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/appveyor-win32-x86.yml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/renovate.json -------------------------------------------------------------------------------- /test-repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-example-repos/HEAD/test-repo.js --------------------------------------------------------------------------------