├── 3 ├── cypress.json └── cypress │ ├── README.md │ ├── fixtures │ └── example.json │ ├── integration │ └── spec.js │ ├── plugins │ └── index.js │ └── support │ └── index.js ├── 4 ├── cypress.json └── cypress │ ├── README.md │ ├── fixtures │ └── example.json │ ├── integration │ └── spec.js │ ├── plugins │ └── index.js │ └── support │ └── index.js ├── 6 ├── cypress.json └── cypress │ ├── README.md │ ├── fixtures │ └── example.json │ ├── integration │ └── spec.js │ ├── plugins │ └── index.js │ └── support │ └── index.js ├── 10 ├── cypress.config.js └── cypress │ ├── README.md │ ├── e2e │ └── spec.cy.js │ ├── fixtures │ └── example.json │ └── support │ └── e2e.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── 10bare ├── cypress.config.js └── cypress │ ├── README.md │ └── e2e │ └── spec.cy.js ├── 4ts ├── cypress.json ├── cypress │ ├── README.md │ ├── fixtures │ │ └── example.json │ ├── integration │ │ └── spec.ts │ ├── plugins │ │ └── index.ts │ └── support │ │ └── index.ts └── tsconfig.json ├── 6bare ├── cypress.json └── cypress │ └── integration │ └── spec.js ├── 6ts ├── cypress.json ├── cypress │ ├── README.md │ ├── fixtures │ │ └── example.json │ ├── integration │ │ └── spec.ts │ ├── plugins │ │ └── index.ts │ └── support │ │ └── index.ts └── tsconfig.json ├── README.md ├── circle.yml ├── issue_template.md ├── package.json ├── renovate.json └── src ├── cly-spec.js └── index.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/.npmrc -------------------------------------------------------------------------------- /10/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/10/cypress.config.js -------------------------------------------------------------------------------- /10/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/10/cypress/README.md -------------------------------------------------------------------------------- /10/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/10/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /10/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/10/cypress/fixtures/example.json -------------------------------------------------------------------------------- /10/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/10/cypress/support/e2e.js -------------------------------------------------------------------------------- /10bare/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/10bare/cypress.config.js -------------------------------------------------------------------------------- /10bare/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/10bare/cypress/README.md -------------------------------------------------------------------------------- /10bare/cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/10bare/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /3/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /3/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/3/cypress/README.md -------------------------------------------------------------------------------- /3/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/3/cypress/fixtures/example.json -------------------------------------------------------------------------------- /3/cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/3/cypress/integration/spec.js -------------------------------------------------------------------------------- /3/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/3/cypress/plugins/index.js -------------------------------------------------------------------------------- /3/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/3/cypress/support/index.js -------------------------------------------------------------------------------- /4/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /4/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4/cypress/README.md -------------------------------------------------------------------------------- /4/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4/cypress/fixtures/example.json -------------------------------------------------------------------------------- /4/cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4/cypress/integration/spec.js -------------------------------------------------------------------------------- /4/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4/cypress/plugins/index.js -------------------------------------------------------------------------------- /4/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4/cypress/support/index.js -------------------------------------------------------------------------------- /4ts/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /4ts/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4ts/cypress/README.md -------------------------------------------------------------------------------- /4ts/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4ts/cypress/fixtures/example.json -------------------------------------------------------------------------------- /4ts/cypress/integration/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4ts/cypress/integration/spec.ts -------------------------------------------------------------------------------- /4ts/cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4ts/cypress/plugins/index.ts -------------------------------------------------------------------------------- /4ts/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/4ts/cypress/support/index.ts -------------------------------------------------------------------------------- /4ts/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["*.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /6/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /6/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6/cypress/README.md -------------------------------------------------------------------------------- /6/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6/cypress/fixtures/example.json -------------------------------------------------------------------------------- /6/cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6/cypress/integration/spec.js -------------------------------------------------------------------------------- /6/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6/cypress/plugins/index.js -------------------------------------------------------------------------------- /6/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6/cypress/support/index.js -------------------------------------------------------------------------------- /6bare/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6bare/cypress.json -------------------------------------------------------------------------------- /6bare/cypress/integration/spec.js: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | it('works', () => {}) 4 | -------------------------------------------------------------------------------- /6ts/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /6ts/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6ts/cypress/README.md -------------------------------------------------------------------------------- /6ts/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6ts/cypress/fixtures/example.json -------------------------------------------------------------------------------- /6ts/cypress/integration/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6ts/cypress/integration/spec.ts -------------------------------------------------------------------------------- /6ts/cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6ts/cypress/plugins/index.ts -------------------------------------------------------------------------------- /6ts/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6ts/cypress/support/index.ts -------------------------------------------------------------------------------- /6ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/6ts/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/circle.yml -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/issue_template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/renovate.json -------------------------------------------------------------------------------- /src/cly-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/src/cly-spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cly/HEAD/src/index.js --------------------------------------------------------------------------------