├── .coveralls.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── .ncurc.js ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── config.json ├── index.js ├── lib └── MultiReporters.js ├── package.json ├── scripts ├── README.md ├── ci │ ├── README.md │ ├── build-and-test.sh │ ├── lib │ │ ├── README.md │ │ ├── create_npmrc_file.sh │ │ ├── get-version.sh │ │ └── publish.sh │ └── release.sh ├── lib │ ├── README.md │ └── robust-bash.sh └── trigger-release.sh ├── tests ├── custom-bad-config.json ├── custom-erring-external-config.json ├── custom-erring-internal-config.json ├── custom-erring-internal-reporter.js ├── custom-external-config.js ├── custom-external-config.json ├── custom-internal-config-array.json ├── custom-internal-config.json ├── custom-internal-dynamic-output-config.json ├── custom-internal-reporter.js └── lib │ └── MultiReporters.test.js └── yarn.lock /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.gitignore -------------------------------------------------------------------------------- /.ncurc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.ncurc.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/index.js -------------------------------------------------------------------------------- /lib/MultiReporters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/lib/MultiReporters.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/package.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/ci/README.md -------------------------------------------------------------------------------- /scripts/ci/build-and-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/ci/build-and-test.sh -------------------------------------------------------------------------------- /scripts/ci/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/ci/lib/README.md -------------------------------------------------------------------------------- /scripts/ci/lib/create_npmrc_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/ci/lib/create_npmrc_file.sh -------------------------------------------------------------------------------- /scripts/ci/lib/get-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/ci/lib/get-version.sh -------------------------------------------------------------------------------- /scripts/ci/lib/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/ci/lib/publish.sh -------------------------------------------------------------------------------- /scripts/ci/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/ci/release.sh -------------------------------------------------------------------------------- /scripts/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/lib/README.md -------------------------------------------------------------------------------- /scripts/lib/robust-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/lib/robust-bash.sh -------------------------------------------------------------------------------- /scripts/trigger-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/scripts/trigger-release.sh -------------------------------------------------------------------------------- /tests/custom-bad-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-bad-config.json -------------------------------------------------------------------------------- /tests/custom-erring-external-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-erring-external-config.json -------------------------------------------------------------------------------- /tests/custom-erring-internal-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-erring-internal-config.json -------------------------------------------------------------------------------- /tests/custom-erring-internal-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-erring-internal-reporter.js -------------------------------------------------------------------------------- /tests/custom-external-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-external-config.js -------------------------------------------------------------------------------- /tests/custom-external-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-external-config.json -------------------------------------------------------------------------------- /tests/custom-internal-config-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-internal-config-array.json -------------------------------------------------------------------------------- /tests/custom-internal-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-internal-config.json -------------------------------------------------------------------------------- /tests/custom-internal-dynamic-output-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-internal-dynamic-output-config.json -------------------------------------------------------------------------------- /tests/custom-internal-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/custom-internal-reporter.js -------------------------------------------------------------------------------- /tests/lib/MultiReporters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/tests/lib/MultiReporters.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YOU54F/cypress-multi-reporters/HEAD/yarn.lock --------------------------------------------------------------------------------