├── .gitignore ├── .npmrc ├── README.md ├── circle.yml ├── package.json └── src └── clients ├── bar ├── cypress-smoke.json ├── cypress.json └── cypress │ ├── fixtures │ └── example.json │ ├── integration │ └── example_spec.js │ ├── smoke │ └── spec.js │ └── support │ ├── commands.js │ └── index.js └── foo ├── cypress.json └── cypress ├── fixtures └── example.json ├── integration └── example_spec.js └── support ├── commands.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | src/clients/foo/cypress/videos/ 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/.npmrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/package.json -------------------------------------------------------------------------------- /src/clients/bar/cypress-smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/bar/cypress-smoke.json -------------------------------------------------------------------------------- /src/clients/bar/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/clients/bar/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/bar/cypress/fixtures/example.json -------------------------------------------------------------------------------- /src/clients/bar/cypress/integration/example_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/bar/cypress/integration/example_spec.js -------------------------------------------------------------------------------- /src/clients/bar/cypress/smoke/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/bar/cypress/smoke/spec.js -------------------------------------------------------------------------------- /src/clients/bar/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/bar/cypress/support/commands.js -------------------------------------------------------------------------------- /src/clients/bar/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/bar/cypress/support/index.js -------------------------------------------------------------------------------- /src/clients/foo/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/clients/foo/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/foo/cypress/fixtures/example.json -------------------------------------------------------------------------------- /src/clients/foo/cypress/integration/example_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/foo/cypress/integration/example_spec.js -------------------------------------------------------------------------------- /src/clients/foo/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/foo/cypress/support/commands.js -------------------------------------------------------------------------------- /src/clients/foo/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-test-nested-projects/HEAD/src/clients/foo/cypress/support/index.js --------------------------------------------------------------------------------