├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── --bug-report.md │ ├── --documentation.md │ ├── --feature-request.md │ └── --question.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── expense.yml │ ├── release.yml │ ├── test.yml │ └── update.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-push ├── .npmignore ├── .nvmrc ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src ├── cjs │ ├── index.ts │ └── package.json ├── constants.ts ├── index.ts ├── metadata.ts ├── types.ts ├── types │ ├── node.d.ts │ └── wdio.ts └── utils.ts ├── tests ├── __mocks__ │ ├── mock.json │ └── mocks.ts ├── __snapshots__ │ ├── metadata.spec.ts.snap │ ├── metadata.test.ts.snap │ ├── reporter.spec.ts.snap │ ├── reporter.test.ts.snap │ ├── utils.spec.ts.snap │ └── utils.test.ts.snap ├── interop │ ├── package.json │ └── reporter.test.ts ├── metadata.test.ts ├── reporter.test.ts └── utils.test.ts ├── tsconfig.json └── vitest.conf.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/ISSUE_TEMPLATE/--bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/ISSUE_TEMPLATE/--documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/ISSUE_TEMPLATE/--feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/ISSUE_TEMPLATE/--question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/expense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/workflows/expense.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.12.2 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/package.json -------------------------------------------------------------------------------- /src/cjs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/src/cjs/index.ts -------------------------------------------------------------------------------- /src/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/src/metadata.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/types/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/src/types/node.d.ts -------------------------------------------------------------------------------- /src/types/wdio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/src/types/wdio.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/__mocks__/mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/__mocks__/mock.json -------------------------------------------------------------------------------- /tests/__mocks__/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/__mocks__/mocks.ts -------------------------------------------------------------------------------- /tests/__snapshots__/metadata.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/__snapshots__/metadata.spec.ts.snap -------------------------------------------------------------------------------- /tests/__snapshots__/metadata.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/__snapshots__/metadata.test.ts.snap -------------------------------------------------------------------------------- /tests/__snapshots__/reporter.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/__snapshots__/reporter.spec.ts.snap -------------------------------------------------------------------------------- /tests/__snapshots__/reporter.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/__snapshots__/reporter.test.ts.snap -------------------------------------------------------------------------------- /tests/__snapshots__/utils.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/__snapshots__/utils.spec.ts.snap -------------------------------------------------------------------------------- /tests/__snapshots__/utils.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/__snapshots__/utils.test.ts.snap -------------------------------------------------------------------------------- /tests/interop/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /tests/interop/reporter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/interop/reporter.test.ts -------------------------------------------------------------------------------- /tests/metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/metadata.test.ts -------------------------------------------------------------------------------- /tests/reporter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/reporter.test.ts -------------------------------------------------------------------------------- /tests/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tests/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdriverio-community/wdio-cucumberjs-json-reporter/HEAD/vitest.conf.ts --------------------------------------------------------------------------------