├── .github ├── publish.yml └── release-please.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTIRUBTORS.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── bin ├── .gitkeep └── puppeteer-js-runner.js ├── index.js ├── lib ├── .gitkeep ├── output-files.js ├── puppeteer-to-istanbul.js └── puppeteer-to-v8.js ├── package.json └── test ├── fixtures ├── block-else-not-covered.json ├── block-logical-not-covered.json ├── function-coverage-full-duplicate.json ├── function-coverage-missing.json ├── http-es6-modules.json ├── inline-and-external-script-coverage.json ├── inline-script-coverage.json ├── merge-coverage │ ├── non-inline-script-a.json │ └── non-inline-script-b.json └── two-inline.json ├── output-files.js ├── puppeteer-to-istanbul.js ├── puppeteer-to-v8.js └── sample_js ├── block-else-not-covered.js ├── block-logical-not-covered.js ├── function-coverage-100.js ├── function-coverage-missing.js ├── function-no-coverage.js ├── inline.js └── two-inline.js /.github/publish.yml: -------------------------------------------------------------------------------- 1 | project: oss-automation 2 | secretId: node-tooling 3 | -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | package-lock.json 4 | .nyc_output 5 | coverage -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTIRUBTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/CONTIRUBTORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/puppeteer-js-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/bin/puppeteer-js-runner.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/index.js -------------------------------------------------------------------------------- /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/output-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/lib/output-files.js -------------------------------------------------------------------------------- /lib/puppeteer-to-istanbul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/lib/puppeteer-to-istanbul.js -------------------------------------------------------------------------------- /lib/puppeteer-to-v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/lib/puppeteer-to-v8.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/block-else-not-covered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/block-else-not-covered.json -------------------------------------------------------------------------------- /test/fixtures/block-logical-not-covered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/block-logical-not-covered.json -------------------------------------------------------------------------------- /test/fixtures/function-coverage-full-duplicate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/function-coverage-full-duplicate.json -------------------------------------------------------------------------------- /test/fixtures/function-coverage-missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/function-coverage-missing.json -------------------------------------------------------------------------------- /test/fixtures/http-es6-modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/http-es6-modules.json -------------------------------------------------------------------------------- /test/fixtures/inline-and-external-script-coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/inline-and-external-script-coverage.json -------------------------------------------------------------------------------- /test/fixtures/inline-script-coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/inline-script-coverage.json -------------------------------------------------------------------------------- /test/fixtures/merge-coverage/non-inline-script-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/merge-coverage/non-inline-script-a.json -------------------------------------------------------------------------------- /test/fixtures/merge-coverage/non-inline-script-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/merge-coverage/non-inline-script-b.json -------------------------------------------------------------------------------- /test/fixtures/two-inline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/fixtures/two-inline.json -------------------------------------------------------------------------------- /test/output-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/output-files.js -------------------------------------------------------------------------------- /test/puppeteer-to-istanbul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/puppeteer-to-istanbul.js -------------------------------------------------------------------------------- /test/puppeteer-to-v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/puppeteer-to-v8.js -------------------------------------------------------------------------------- /test/sample_js/block-else-not-covered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/sample_js/block-else-not-covered.js -------------------------------------------------------------------------------- /test/sample_js/block-logical-not-covered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/sample_js/block-logical-not-covered.js -------------------------------------------------------------------------------- /test/sample_js/function-coverage-100.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/sample_js/function-coverage-100.js -------------------------------------------------------------------------------- /test/sample_js/function-coverage-missing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/sample_js/function-coverage-missing.js -------------------------------------------------------------------------------- /test/sample_js/function-no-coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/sample_js/function-no-coverage.js -------------------------------------------------------------------------------- /test/sample_js/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/sample_js/inline.js -------------------------------------------------------------------------------- /test/sample_js/two-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/istanbuljs/puppeteer-to-istanbul/HEAD/test/sample_js/two-inline.js --------------------------------------------------------------------------------