├── .editorconfig ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.yml ├── .vscode ├── extensions.json └── settings.json ├── .yarnrc.yml ├── LICENSE.md ├── README.md ├── package.json ├── src ├── data.ts ├── fixtures.ts ├── index.ts ├── reporter.ts └── worker.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /lib 2 | *.tgz 3 | 4 | node_modules 5 | .yarn 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .yarn 2 | .pnp.cjs 3 | 4 | /lib 5 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/package.json -------------------------------------------------------------------------------- /src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/src/data.ts -------------------------------------------------------------------------------- /src/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/src/fixtures.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/src/reporter.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/src/worker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgotink/playwright-coverage/HEAD/yarn.lock --------------------------------------------------------------------------------