UNPKG

cucumberjs-parallel

Version:

Run cucumber features or scenarios in parallel with limited threads count

61 lines (60 loc) 2.35 kB
{ "name": "cucumberjs-parallel", "version": "2.0.2", "description": "Run cucumber features or scenarios in parallel with limited threads count", "main": "./lib/run.js", "scripts": { "test": "mocha './test/unit_tests'", "pretest": "npm run cucumberjs-run-features || npm run test-feature && npm run test-scenario", "test-feature": "node test/bin/cucumberjs-parallel test/features --parallel-type features -w 2 --format json:test/report/cucumber_report1.json", "test-scenario": "node test/bin/cucumberjs-parallel test/features --parallel-type scenarios -w 2 --format json:test/report/cucumber_report2.json", "cucumberjs-run-features": "node node_modules/@cucumber/cucumber/bin/cucumber-js test/features --format json:test/report/cucumber_report0.json --publish-quiet", "test-feature-no-params": "node test/bin/cucumberjs-parallel test/features -w 4", "test-allure": "node test/bin/cucumberjs-parallel test/features --parallel-type features -w 2 -f test/allure/Reporter.js", "cucumberjs-run-feature": "./node_modules/.bin/cucumber-js test/features/parallel_1.feature:31 --format json:test/report/cucumber_report.json" }, "keywords": [ "cucumber", "parallel", "concurrent", "cucumber-js", "cucumber-parallel", "cucumberjs-parallel" ], "author": { "name": "Viacheslav Timonov", "email": "tsmaggot@gmail.com" }, "repository": { "type": "git", "url": "git+https://github.com/vtimonov/cucumberjs-parallel.git" }, "homepage": "https://github.com/vtimonov/cucumberjs-parallel#readme", "license": "MIT", "devDependencies": { "allure-cucumberjs": "^2.0.0-beta.14", "chai": "^4.2.0", "deep-equal-in-any-order": "^1.0.28", "eslint": "^7.10.0", "eslint-config-prettier": "^6.15.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.22.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.2", "mocha": "^10.0.0", "prettier": "2.1.2" }, "dependencies": { "@cucumber/cucumber": "^7.3.1", "@cucumber/gherkin-streams": "^4.0.0", "commander": "^6.2.0", "fs-extra": "^9.0.1", "fs-finder": "^1.8.1", "gherkin": "5.0.0", "lodash": "^4.17.20", "log4js": "^6.3.0", "uuid": "^8.3.1", "workerpool": "^6.0.3" } }