├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── --bug-report.md │ ├── --documentation.md │ ├── --feature-request.md │ └── --question.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── codeql.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── .release-it.json ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── CONTRIBUTING.md ├── WEBDRIVER.IO.MD └── images │ ├── browsers-features-overview.jpg │ ├── custom-data.jpg │ ├── custom-metadata-features-overview.jpg │ ├── features-custom-metadata.jpg │ ├── nanoseconds_to_time.png │ ├── overview-metadata.jpg │ ├── scenario-app-metadata.jpg │ ├── scenario-browser-metadata.jpg │ └── scenario-no-metadata.jpg ├── examples └── cypress │ ├── .bin │ └── cucumber-json-formatter │ ├── .cypress-cucumber-preprocessorrc.json │ ├── README.md │ ├── cucumber-html-report.ts │ ├── cypress.config.ts │ ├── cypress │ ├── e2e │ │ ├── gmail │ │ │ ├── gmail.feature │ │ │ └── gmail.step.ts │ │ └── google │ │ │ ├── google.feature │ │ │ └── google.step.ts │ ├── fixtures │ │ └── example.json │ └── support │ │ ├── commands.ts │ │ └── e2e.ts │ ├── package.json │ ├── pnpm-lock.yaml │ └── tsconfig.json ├── lib ├── collect-jsons.js └── generate-report.js ├── package.json ├── pnpm-lock.yaml ├── templates ├── assets │ ├── css │ │ ├── bootstrap.min.css │ │ ├── dataTables.bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── responsive.bootstrap5.min.css │ │ └── responsive.dataTables.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ └── ghost.svg │ └── js │ │ ├── Chart.min.js │ │ ├── bootstrap.min.js │ │ ├── darkmode.js │ │ ├── dataTables.responsive.min.js │ │ ├── datatables.bootstrap5.min.js │ │ ├── datatables.jquery.min.js │ │ ├── datatables.min.js │ │ ├── html5shiv.min.js │ │ ├── jquery.min.js │ │ └── responsive.bootstrap5.js ├── components │ ├── custom-data.tmpl │ ├── feature-custom-metadata-overview.tmpl │ ├── feature-metadata-overview.tmpl │ ├── features-overview-custom-metadata.tmpl │ ├── features-overview.chart.tmpl │ ├── features-overview.tmpl │ ├── scenarios-overview.chart.tmpl │ └── scenarios.tmpl ├── feature-overview.index.tmpl ├── features-overview.index.tmpl ├── generic.js └── style.css └── test ├── custom.css ├── my.css ├── test.js └── unit ├── collect-jsons.spec.js ├── data ├── collect-json │ └── no-metadata.json ├── custom-metadata-json │ ├── ambiguous_scenarios_specified_v1.json │ ├── ambiguous_scenarios_specified_v2.json │ ├── failure_report_v3.json │ ├── multiple_different_attachements.json │ ├── pending_scenarios_specified_v1.json │ ├── skipped_scenarios.json │ └── undefined_scenarios_specified_v3.json ├── embedded-array-json │ ├── embedded_success_v1.json │ ├── failure_report_multi_attachment_v3.json │ ├── failure_report_v3.json │ ├── happy_flow_v2.json │ └── happy_flow_v3.json ├── json │ ├── after.hook.error.json │ ├── ambiguous_scenarios_specified_v1.json │ ├── ambiguous_scenarios_specified_v2.json │ ├── ambiguous_scenarios_specified_v3.json │ ├── background.json │ ├── background2.json │ ├── before-and-after-hook.json │ ├── before.hook.error.json │ ├── embeddings.json │ ├── empty_json.json │ ├── failure_report_v1.json │ ├── failure_report_v2.json │ ├── failure_report_v3.json │ ├── happy_flow_app_android.json │ ├── happy_flow_app_ios.json │ ├── happy_flow_v1.json │ ├── happy_flow_v2.json │ ├── happy_flow_v3.json │ ├── no_elements.json │ ├── no_elements_v2.json │ ├── no_elements_v3.json │ ├── pending_scenarios_specified_v1.json │ ├── pending_scenarios_specified_v2.json │ ├── pending_scenarios_specified_v3.json │ ├── skipped_scenarios.json │ ├── undefined_scenarios_specified_v1.json │ ├── undefined_scenarios_specified_v2.json │ ├── undefined_scenarios_specified_v3.json │ ├── undefined_succeeded_pending_scenarios_specified_v3.json │ └── with_rest_doc_string.json ├── no-jsons │ └── empty.md └── output │ ├── merged-output.json │ └── provided-metadata.json ├── generate-json.spec.js └── jasmine.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/ISSUE_TEMPLATE/--bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/ISSUE_TEMPLATE/--documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/ISSUE_TEMPLATE/--feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/ISSUE_TEMPLATE/--question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.npmignore -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.release-it.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/WEBDRIVER.IO.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/WEBDRIVER.IO.MD -------------------------------------------------------------------------------- /docs/images/browsers-features-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/browsers-features-overview.jpg -------------------------------------------------------------------------------- /docs/images/custom-data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/custom-data.jpg -------------------------------------------------------------------------------- /docs/images/custom-metadata-features-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/custom-metadata-features-overview.jpg -------------------------------------------------------------------------------- /docs/images/features-custom-metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/features-custom-metadata.jpg -------------------------------------------------------------------------------- /docs/images/nanoseconds_to_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/nanoseconds_to_time.png -------------------------------------------------------------------------------- /docs/images/overview-metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/overview-metadata.jpg -------------------------------------------------------------------------------- /docs/images/scenario-app-metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/scenario-app-metadata.jpg -------------------------------------------------------------------------------- /docs/images/scenario-browser-metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/scenario-browser-metadata.jpg -------------------------------------------------------------------------------- /docs/images/scenario-no-metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/docs/images/scenario-no-metadata.jpg -------------------------------------------------------------------------------- /examples/cypress/.bin/cucumber-json-formatter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/.bin/cucumber-json-formatter -------------------------------------------------------------------------------- /examples/cypress/.cypress-cucumber-preprocessorrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/.cypress-cucumber-preprocessorrc.json -------------------------------------------------------------------------------- /examples/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/README.md -------------------------------------------------------------------------------- /examples/cypress/cucumber-html-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cucumber-html-report.ts -------------------------------------------------------------------------------- /examples/cypress/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cypress.config.ts -------------------------------------------------------------------------------- /examples/cypress/cypress/e2e/gmail/gmail.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cypress/e2e/gmail/gmail.feature -------------------------------------------------------------------------------- /examples/cypress/cypress/e2e/gmail/gmail.step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cypress/e2e/gmail/gmail.step.ts -------------------------------------------------------------------------------- /examples/cypress/cypress/e2e/google/google.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cypress/e2e/google/google.feature -------------------------------------------------------------------------------- /examples/cypress/cypress/e2e/google/google.step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cypress/e2e/google/google.step.ts -------------------------------------------------------------------------------- /examples/cypress/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cypress/fixtures/example.json -------------------------------------------------------------------------------- /examples/cypress/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cypress/support/commands.ts -------------------------------------------------------------------------------- /examples/cypress/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/cypress/support/e2e.ts -------------------------------------------------------------------------------- /examples/cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/package.json -------------------------------------------------------------------------------- /examples/cypress/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/examples/cypress/tsconfig.json -------------------------------------------------------------------------------- /lib/collect-jsons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/lib/collect-jsons.js -------------------------------------------------------------------------------- /lib/generate-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/lib/generate-report.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /templates/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /templates/assets/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /templates/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /templates/assets/css/responsive.bootstrap5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/css/responsive.bootstrap5.min.css -------------------------------------------------------------------------------- /templates/assets/css/responsive.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/css/responsive.dataTables.min.css -------------------------------------------------------------------------------- /templates/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /templates/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /templates/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /templates/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /templates/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /templates/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /templates/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /templates/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /templates/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /templates/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /templates/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /templates/assets/img/ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/img/ghost.svg -------------------------------------------------------------------------------- /templates/assets/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/Chart.min.js -------------------------------------------------------------------------------- /templates/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /templates/assets/js/darkmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/darkmode.js -------------------------------------------------------------------------------- /templates/assets/js/dataTables.responsive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/dataTables.responsive.min.js -------------------------------------------------------------------------------- /templates/assets/js/datatables.bootstrap5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/datatables.bootstrap5.min.js -------------------------------------------------------------------------------- /templates/assets/js/datatables.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/datatables.jquery.min.js -------------------------------------------------------------------------------- /templates/assets/js/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/datatables.min.js -------------------------------------------------------------------------------- /templates/assets/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/html5shiv.min.js -------------------------------------------------------------------------------- /templates/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/jquery.min.js -------------------------------------------------------------------------------- /templates/assets/js/responsive.bootstrap5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/assets/js/responsive.bootstrap5.js -------------------------------------------------------------------------------- /templates/components/custom-data.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/components/custom-data.tmpl -------------------------------------------------------------------------------- /templates/components/feature-custom-metadata-overview.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/components/feature-custom-metadata-overview.tmpl -------------------------------------------------------------------------------- /templates/components/feature-metadata-overview.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/components/feature-metadata-overview.tmpl -------------------------------------------------------------------------------- /templates/components/features-overview-custom-metadata.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/components/features-overview-custom-metadata.tmpl -------------------------------------------------------------------------------- /templates/components/features-overview.chart.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/components/features-overview.chart.tmpl -------------------------------------------------------------------------------- /templates/components/features-overview.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/components/features-overview.tmpl -------------------------------------------------------------------------------- /templates/components/scenarios-overview.chart.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/components/scenarios-overview.chart.tmpl -------------------------------------------------------------------------------- /templates/components/scenarios.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/components/scenarios.tmpl -------------------------------------------------------------------------------- /templates/feature-overview.index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/feature-overview.index.tmpl -------------------------------------------------------------------------------- /templates/features-overview.index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/features-overview.index.tmpl -------------------------------------------------------------------------------- /templates/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/generic.js -------------------------------------------------------------------------------- /templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/templates/style.css -------------------------------------------------------------------------------- /test/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/custom.css -------------------------------------------------------------------------------- /test/my.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/my.css -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/test.js -------------------------------------------------------------------------------- /test/unit/collect-jsons.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/collect-jsons.spec.js -------------------------------------------------------------------------------- /test/unit/data/collect-json/no-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/collect-json/no-metadata.json -------------------------------------------------------------------------------- /test/unit/data/custom-metadata-json/ambiguous_scenarios_specified_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/custom-metadata-json/ambiguous_scenarios_specified_v1.json -------------------------------------------------------------------------------- /test/unit/data/custom-metadata-json/ambiguous_scenarios_specified_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/custom-metadata-json/ambiguous_scenarios_specified_v2.json -------------------------------------------------------------------------------- /test/unit/data/custom-metadata-json/failure_report_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/custom-metadata-json/failure_report_v3.json -------------------------------------------------------------------------------- /test/unit/data/custom-metadata-json/multiple_different_attachements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/custom-metadata-json/multiple_different_attachements.json -------------------------------------------------------------------------------- /test/unit/data/custom-metadata-json/pending_scenarios_specified_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/custom-metadata-json/pending_scenarios_specified_v1.json -------------------------------------------------------------------------------- /test/unit/data/custom-metadata-json/skipped_scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/custom-metadata-json/skipped_scenarios.json -------------------------------------------------------------------------------- /test/unit/data/custom-metadata-json/undefined_scenarios_specified_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/custom-metadata-json/undefined_scenarios_specified_v3.json -------------------------------------------------------------------------------- /test/unit/data/embedded-array-json/embedded_success_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/embedded-array-json/embedded_success_v1.json -------------------------------------------------------------------------------- /test/unit/data/embedded-array-json/failure_report_multi_attachment_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/embedded-array-json/failure_report_multi_attachment_v3.json -------------------------------------------------------------------------------- /test/unit/data/embedded-array-json/failure_report_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/embedded-array-json/failure_report_v3.json -------------------------------------------------------------------------------- /test/unit/data/embedded-array-json/happy_flow_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/embedded-array-json/happy_flow_v2.json -------------------------------------------------------------------------------- /test/unit/data/embedded-array-json/happy_flow_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/embedded-array-json/happy_flow_v3.json -------------------------------------------------------------------------------- /test/unit/data/json/after.hook.error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/after.hook.error.json -------------------------------------------------------------------------------- /test/unit/data/json/ambiguous_scenarios_specified_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/ambiguous_scenarios_specified_v1.json -------------------------------------------------------------------------------- /test/unit/data/json/ambiguous_scenarios_specified_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/ambiguous_scenarios_specified_v2.json -------------------------------------------------------------------------------- /test/unit/data/json/ambiguous_scenarios_specified_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/ambiguous_scenarios_specified_v3.json -------------------------------------------------------------------------------- /test/unit/data/json/background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/background.json -------------------------------------------------------------------------------- /test/unit/data/json/background2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/background2.json -------------------------------------------------------------------------------- /test/unit/data/json/before-and-after-hook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/before-and-after-hook.json -------------------------------------------------------------------------------- /test/unit/data/json/before.hook.error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/before.hook.error.json -------------------------------------------------------------------------------- /test/unit/data/json/embeddings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/embeddings.json -------------------------------------------------------------------------------- /test/unit/data/json/empty_json.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/data/json/failure_report_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/failure_report_v1.json -------------------------------------------------------------------------------- /test/unit/data/json/failure_report_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/failure_report_v2.json -------------------------------------------------------------------------------- /test/unit/data/json/failure_report_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/failure_report_v3.json -------------------------------------------------------------------------------- /test/unit/data/json/happy_flow_app_android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/happy_flow_app_android.json -------------------------------------------------------------------------------- /test/unit/data/json/happy_flow_app_ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/happy_flow_app_ios.json -------------------------------------------------------------------------------- /test/unit/data/json/happy_flow_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/happy_flow_v1.json -------------------------------------------------------------------------------- /test/unit/data/json/happy_flow_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/happy_flow_v2.json -------------------------------------------------------------------------------- /test/unit/data/json/happy_flow_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/happy_flow_v3.json -------------------------------------------------------------------------------- /test/unit/data/json/no_elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/no_elements.json -------------------------------------------------------------------------------- /test/unit/data/json/no_elements_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/no_elements_v2.json -------------------------------------------------------------------------------- /test/unit/data/json/no_elements_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/no_elements_v3.json -------------------------------------------------------------------------------- /test/unit/data/json/pending_scenarios_specified_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/pending_scenarios_specified_v1.json -------------------------------------------------------------------------------- /test/unit/data/json/pending_scenarios_specified_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/pending_scenarios_specified_v2.json -------------------------------------------------------------------------------- /test/unit/data/json/pending_scenarios_specified_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/pending_scenarios_specified_v3.json -------------------------------------------------------------------------------- /test/unit/data/json/skipped_scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/skipped_scenarios.json -------------------------------------------------------------------------------- /test/unit/data/json/undefined_scenarios_specified_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/undefined_scenarios_specified_v1.json -------------------------------------------------------------------------------- /test/unit/data/json/undefined_scenarios_specified_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/undefined_scenarios_specified_v2.json -------------------------------------------------------------------------------- /test/unit/data/json/undefined_scenarios_specified_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/undefined_scenarios_specified_v3.json -------------------------------------------------------------------------------- /test/unit/data/json/undefined_succeeded_pending_scenarios_specified_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/undefined_succeeded_pending_scenarios_specified_v3.json -------------------------------------------------------------------------------- /test/unit/data/json/with_rest_doc_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/json/with_rest_doc_string.json -------------------------------------------------------------------------------- /test/unit/data/no-jsons/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/data/output/merged-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/output/merged-output.json -------------------------------------------------------------------------------- /test/unit/data/output/provided-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/data/output/provided-metadata.json -------------------------------------------------------------------------------- /test/unit/generate-json.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/generate-json.spec.js -------------------------------------------------------------------------------- /test/unit/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WasiqB/multiple-cucumber-html-reporter/HEAD/test/unit/jasmine.json --------------------------------------------------------------------------------