├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── build.yml ├── .gitignore ├── .mocharc.json ├── .npmrc ├── LICENSE ├── README.md ├── bin └── cypress-parallel ├── cucumber.d.ts ├── cucumber.json ├── features ├── configuration │ ├── disable-knapsack-output.feature │ ├── knapsack.feature │ └── node.feature ├── knapsack.feature ├── step_definitions │ ├── cli_steps.ts │ ├── config_steps.ts │ └── file_steps.ts ├── support │ ├── configFileUpdater.ts │ ├── helpers.ts │ ├── hooks.ts │ └── world.ts └── unweighed-strategies │ ├── distribute.feature │ └── estimate.feature ├── knapsack-reporter.ts ├── lib ├── assertions.ts ├── ci.ts ├── cli.ts ├── configuration.ts ├── debug.ts ├── error.ts ├── index.ts ├── type-guards.ts ├── unweighed-strategies │ ├── distribute.ts │ ├── estimate.ts │ └── utils.ts └── unweighed-strategy.ts ├── package.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- 1 | { 2 | "spec": "lib/**/*.test.js" 3 | } 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/README.md -------------------------------------------------------------------------------- /bin/cypress-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/bin/cypress-parallel -------------------------------------------------------------------------------- /cucumber.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/cucumber.d.ts -------------------------------------------------------------------------------- /cucumber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/cucumber.json -------------------------------------------------------------------------------- /features/configuration/disable-knapsack-output.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/configuration/disable-knapsack-output.feature -------------------------------------------------------------------------------- /features/configuration/knapsack.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/configuration/knapsack.feature -------------------------------------------------------------------------------- /features/configuration/node.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/configuration/node.feature -------------------------------------------------------------------------------- /features/knapsack.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/knapsack.feature -------------------------------------------------------------------------------- /features/step_definitions/cli_steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/step_definitions/cli_steps.ts -------------------------------------------------------------------------------- /features/step_definitions/config_steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/step_definitions/config_steps.ts -------------------------------------------------------------------------------- /features/step_definitions/file_steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/step_definitions/file_steps.ts -------------------------------------------------------------------------------- /features/support/configFileUpdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/support/configFileUpdater.ts -------------------------------------------------------------------------------- /features/support/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/support/helpers.ts -------------------------------------------------------------------------------- /features/support/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/support/hooks.ts -------------------------------------------------------------------------------- /features/support/world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/support/world.ts -------------------------------------------------------------------------------- /features/unweighed-strategies/distribute.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/unweighed-strategies/distribute.feature -------------------------------------------------------------------------------- /features/unweighed-strategies/estimate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/features/unweighed-strategies/estimate.feature -------------------------------------------------------------------------------- /knapsack-reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/knapsack-reporter.ts -------------------------------------------------------------------------------- /lib/assertions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/assertions.ts -------------------------------------------------------------------------------- /lib/ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/ci.ts -------------------------------------------------------------------------------- /lib/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/cli.ts -------------------------------------------------------------------------------- /lib/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/configuration.ts -------------------------------------------------------------------------------- /lib/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/debug.ts -------------------------------------------------------------------------------- /lib/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/error.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/type-guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/type-guards.ts -------------------------------------------------------------------------------- /lib/unweighed-strategies/distribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/unweighed-strategies/distribute.ts -------------------------------------------------------------------------------- /lib/unweighed-strategies/estimate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/unweighed-strategies/estimate.ts -------------------------------------------------------------------------------- /lib/unweighed-strategies/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/unweighed-strategies/utils.ts -------------------------------------------------------------------------------- /lib/unweighed-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/lib/unweighed-strategy.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badeball/cypress-parallel/HEAD/tsconfig.json --------------------------------------------------------------------------------