├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── README.md ├── __snapshots__ └── spec.js ├── circle.yml ├── cypress.json ├── cypress ├── README.md ├── fixtures │ └── example.json ├── integration │ ├── spec-2.js │ └── spec.js ├── plugins │ └── index.js └── support │ └── index.js ├── grep.js ├── package.json ├── renovate.json ├── src ├── grep-pick-tests.js ├── index.js ├── itify.js └── spec-parser.js └── test ├── plugin-browserify-with-grep.js ├── plugin-does-grep.js ├── plugin-selects-does.js ├── plugin-selects-no-tests.js └── spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | cypress/videos 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/README.md -------------------------------------------------------------------------------- /__snapshots__/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/__snapshots__/spec.js -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/circle.yml -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://todomvc.com/examples/vue/" 3 | } 4 | -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/spec-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/cypress/integration/spec-2.js -------------------------------------------------------------------------------- /cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/cypress/integration/spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /grep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/grep.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/renovate.json -------------------------------------------------------------------------------- /src/grep-pick-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/src/grep-pick-tests.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/src/index.js -------------------------------------------------------------------------------- /src/itify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/src/itify.js -------------------------------------------------------------------------------- /src/spec-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/src/spec-parser.js -------------------------------------------------------------------------------- /test/plugin-browserify-with-grep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/test/plugin-browserify-with-grep.js -------------------------------------------------------------------------------- /test/plugin-does-grep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/test/plugin-does-grep.js -------------------------------------------------------------------------------- /test/plugin-selects-does.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/test/plugin-selects-does.js -------------------------------------------------------------------------------- /test/plugin-selects-no-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/test/plugin-selects-no-tests.js -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cypress-select-tests/HEAD/test/spec.js --------------------------------------------------------------------------------