├── .editorconfig ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── lcov-result-merger.js ├── index.d.ts ├── index.js ├── lib ├── configuration.js ├── entries │ ├── brda.js │ ├── coverage-file.js │ └── da.js └── full-report.js ├── package.json └── test ├── expected ├── basic │ └── lcov.info ├── prepended-path-fix │ └── lcov.info ├── prepended │ └── lcov.info └── windows │ └── lcov.info ├── fixtures ├── basic │ ├── a │ │ └── lcov.info │ └── b │ │ └── lcov.info ├── coverage-subfolder │ ├── a │ │ └── coverage │ │ │ └── lcov.info │ └── b │ │ └── coverage │ │ └── lcov.info ├── ignore │ ├── a │ │ ├── extra.info │ │ └── lcov.info │ └── b │ │ └── lcov.info └── windows │ └── lcov.info ├── helpers └── index.js ├── test-e2e ├── lcov-result-merger-cmd-spec.js └── merge-coverage-report-file-streams-spec.js ├── test-types └── index.test-d.ts └── test-unit ├── brda-spec.js ├── coverage-file-spec.js └── da-spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/README.md -------------------------------------------------------------------------------- /bin/lcov-result-merger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/bin/lcov-result-merger.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/index.js -------------------------------------------------------------------------------- /lib/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/lib/configuration.js -------------------------------------------------------------------------------- /lib/entries/brda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/lib/entries/brda.js -------------------------------------------------------------------------------- /lib/entries/coverage-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/lib/entries/coverage-file.js -------------------------------------------------------------------------------- /lib/entries/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/lib/entries/da.js -------------------------------------------------------------------------------- /lib/full-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/lib/full-report.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/basic/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/expected/basic/lcov.info -------------------------------------------------------------------------------- /test/expected/prepended-path-fix/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/expected/prepended-path-fix/lcov.info -------------------------------------------------------------------------------- /test/expected/prepended/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/expected/prepended/lcov.info -------------------------------------------------------------------------------- /test/expected/windows/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/expected/windows/lcov.info -------------------------------------------------------------------------------- /test/fixtures/basic/a/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/fixtures/basic/a/lcov.info -------------------------------------------------------------------------------- /test/fixtures/basic/b/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/fixtures/basic/b/lcov.info -------------------------------------------------------------------------------- /test/fixtures/coverage-subfolder/a/coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/fixtures/coverage-subfolder/a/coverage/lcov.info -------------------------------------------------------------------------------- /test/fixtures/coverage-subfolder/b/coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/fixtures/coverage-subfolder/b/coverage/lcov.info -------------------------------------------------------------------------------- /test/fixtures/ignore/a/extra.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/fixtures/ignore/a/extra.info -------------------------------------------------------------------------------- /test/fixtures/ignore/a/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/fixtures/ignore/a/lcov.info -------------------------------------------------------------------------------- /test/fixtures/ignore/b/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/fixtures/ignore/b/lcov.info -------------------------------------------------------------------------------- /test/fixtures/windows/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/fixtures/windows/lcov.info -------------------------------------------------------------------------------- /test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/helpers/index.js -------------------------------------------------------------------------------- /test/test-e2e/lcov-result-merger-cmd-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/test-e2e/lcov-result-merger-cmd-spec.js -------------------------------------------------------------------------------- /test/test-e2e/merge-coverage-report-file-streams-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/test-e2e/merge-coverage-report-file-streams-spec.js -------------------------------------------------------------------------------- /test/test-types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/test-types/index.test-d.ts -------------------------------------------------------------------------------- /test/test-unit/brda-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/test-unit/brda-spec.js -------------------------------------------------------------------------------- /test/test-unit/coverage-file-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/test-unit/coverage-file-spec.js -------------------------------------------------------------------------------- /test/test-unit/da-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mweibel/lcov-result-merger/HEAD/test/test-unit/da-spec.js --------------------------------------------------------------------------------