├── .babelrc ├── .editorconfig ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── --bug-report.md │ ├── --documentation.md │ ├── --feature-request.md │ └── --question.md └── stale.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ ├── app_features │ └── app.feature ├── config │ ├── wdio.app.android.conf.js │ ├── wdio.app.ios.conf.js │ ├── wdio.browsers.conf.js │ └── wdio.shared.conf.js ├── features │ ├── ambiguous.feature │ ├── attach.feature │ ├── data.feature │ ├── failed.feature │ ├── issue-16.feature │ ├── no.scenario.feature │ ├── outline.feature │ ├── passed.feature │ ├── pending.feature │ ├── skipped.feature │ └── undefined.feature └── step_definitions │ └── all.steps.js ├── docs ├── CONTRIBUTING.md └── assets │ ├── before-after.jpg │ ├── custom-data.jpg │ ├── feature-overview.jpg │ ├── features-overview.jpg │ ├── given-datatables.jpg │ └── report-overview.jpg ├── lib ├── generateJson.js └── reporter.js └── package.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.github/ISSUE_TEMPLATE/--bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.github/ISSUE_TEMPLATE/--documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.github/ISSUE_TEMPLATE/--feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.github/ISSUE_TEMPLATE/--question.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/app_features/app.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/app_features/app.feature -------------------------------------------------------------------------------- /__tests__/config/wdio.app.android.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/config/wdio.app.android.conf.js -------------------------------------------------------------------------------- /__tests__/config/wdio.app.ios.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/config/wdio.app.ios.conf.js -------------------------------------------------------------------------------- /__tests__/config/wdio.browsers.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/config/wdio.browsers.conf.js -------------------------------------------------------------------------------- /__tests__/config/wdio.shared.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/config/wdio.shared.conf.js -------------------------------------------------------------------------------- /__tests__/features/ambiguous.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/ambiguous.feature -------------------------------------------------------------------------------- /__tests__/features/attach.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/attach.feature -------------------------------------------------------------------------------- /__tests__/features/data.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/data.feature -------------------------------------------------------------------------------- /__tests__/features/failed.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/failed.feature -------------------------------------------------------------------------------- /__tests__/features/issue-16.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/issue-16.feature -------------------------------------------------------------------------------- /__tests__/features/no.scenario.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/no.scenario.feature -------------------------------------------------------------------------------- /__tests__/features/outline.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/outline.feature -------------------------------------------------------------------------------- /__tests__/features/passed.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/passed.feature -------------------------------------------------------------------------------- /__tests__/features/pending.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/pending.feature -------------------------------------------------------------------------------- /__tests__/features/skipped.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/skipped.feature -------------------------------------------------------------------------------- /__tests__/features/undefined.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/features/undefined.feature -------------------------------------------------------------------------------- /__tests__/step_definitions/all.steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/__tests__/step_definitions/all.steps.js -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/assets/before-after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/docs/assets/before-after.jpg -------------------------------------------------------------------------------- /docs/assets/custom-data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/docs/assets/custom-data.jpg -------------------------------------------------------------------------------- /docs/assets/feature-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/docs/assets/feature-overview.jpg -------------------------------------------------------------------------------- /docs/assets/features-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/docs/assets/features-overview.jpg -------------------------------------------------------------------------------- /docs/assets/given-datatables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/docs/assets/given-datatables.jpg -------------------------------------------------------------------------------- /docs/assets/report-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/docs/assets/report-overview.jpg -------------------------------------------------------------------------------- /lib/generateJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/lib/generateJson.js -------------------------------------------------------------------------------- /lib/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/lib/reporter.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/wdio-multiple-cucumber-html-reporter/HEAD/package.json --------------------------------------------------------------------------------