├── .gitignore ├── .node-version ├── .release.json ├── LICENSE.md ├── bin └── cypress ├── circle.yml ├── lib ├── cli.coffee ├── commands │ ├── ci.coffee │ ├── ids.coffee │ ├── install.coffee │ ├── key.coffee │ ├── open.coffee │ ├── path.coffee │ ├── run.coffee │ ├── verify.coffee │ └── version.coffee └── utils.coffee ├── package.json ├── readme.md └── test ├── bin_spec.coffee ├── commands ├── ci_spec.coffee ├── ids_spec.coffee ├── install_spec.coffee ├── key_spec.coffee ├── open_spec.coffee ├── path_spec.coffee ├── run_spec.coffee └── update_spec.coffee ├── fixture └── example.zip ├── mocha.opts ├── spec_helper.coffee ├── updater_spec.coffee └── utils_spec.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | .tmp 4 | .DS_Store 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 6.5.0 2 | -------------------------------------------------------------------------------- /.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/.release.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/LICENSE.md -------------------------------------------------------------------------------- /bin/cypress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/bin/cypress -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/circle.yml -------------------------------------------------------------------------------- /lib/cli.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/cli.coffee -------------------------------------------------------------------------------- /lib/commands/ci.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/ci.coffee -------------------------------------------------------------------------------- /lib/commands/ids.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/ids.coffee -------------------------------------------------------------------------------- /lib/commands/install.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/install.coffee -------------------------------------------------------------------------------- /lib/commands/key.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/key.coffee -------------------------------------------------------------------------------- /lib/commands/open.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/open.coffee -------------------------------------------------------------------------------- /lib/commands/path.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/path.coffee -------------------------------------------------------------------------------- /lib/commands/run.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/run.coffee -------------------------------------------------------------------------------- /lib/commands/verify.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/verify.coffee -------------------------------------------------------------------------------- /lib/commands/version.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/commands/version.coffee -------------------------------------------------------------------------------- /lib/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/lib/utils.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/readme.md -------------------------------------------------------------------------------- /test/bin_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/bin_spec.coffee -------------------------------------------------------------------------------- /test/commands/ci_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/commands/ci_spec.coffee -------------------------------------------------------------------------------- /test/commands/ids_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/commands/ids_spec.coffee -------------------------------------------------------------------------------- /test/commands/install_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/commands/install_spec.coffee -------------------------------------------------------------------------------- /test/commands/key_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/commands/key_spec.coffee -------------------------------------------------------------------------------- /test/commands/open_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/commands/open_spec.coffee -------------------------------------------------------------------------------- /test/commands/path_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/commands/path_spec.coffee -------------------------------------------------------------------------------- /test/commands/run_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/commands/run_spec.coffee -------------------------------------------------------------------------------- /test/commands/update_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/commands/update_spec.coffee -------------------------------------------------------------------------------- /test/fixture/example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/fixture/example.zip -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/spec_helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/spec_helper.coffee -------------------------------------------------------------------------------- /test/updater_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/updater_spec.coffee -------------------------------------------------------------------------------- /test/utils_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-cli/HEAD/test/utils_spec.coffee --------------------------------------------------------------------------------