├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .npmignore ├── .nycrc ├── .prettierrc.js ├── .prettierrc.js ├── LICENSE ├── README.md ├── package.json ├── playwright.config.ts ├── src ├── defaultReport.ts ├── index.ts ├── types.ts └── utils.ts ├── tests ├── defaultReport.spec.ts ├── reporter.spec.ts └── utils.spec.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.prettierrc.js : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /src/defaultReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/src/defaultReport.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/defaultReport.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/tests/defaultReport.spec.ts -------------------------------------------------------------------------------- /tests/reporter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/tests/reporter.spec.ts -------------------------------------------------------------------------------- /tests/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/tests/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenkilbourn/playwright-report-summary/HEAD/tsconfig.json --------------------------------------------------------------------------------