diff --git a/README.md b/README.md index 910ad60..7e11c7b 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,13 @@ Small text based custom reporter for Playwright. It can be handy to publish test results for things such as an SNS message or minimal Slack update. This Tool allows you to generate smaller reports with basic info about your test run. - ## Table of Contents -* [✨ Installation ✨](#✨-installation-✨) -* [📍 Configuration 📍](#📍-configuration-📍) -* [ Default Output 📜](#default-output-📜) -* [Customizing Outputs 👨‍💻](#customizing-outputs-👨‍💻) -* [Available Stats 🧰](#available-stats-🧰) +* [✨ Installation ✨](#-configuration-) +* [📍 Configuration 📍](#-configuration-) +* [ Default Output 📜](#default-output-) +* [Customizing Outputs 👨‍💻](#customizing-outputs-) +* [Available Stats 🧰](#available-stats-) ## ✨ Installation ✨ @@ -32,7 +31,7 @@ Modify your `playwright.config.ts` file to include the reporter: ```typescript reporter: [ - ['@skilbourn/playwright-report-summary', { outputFile: 'custom-summary.txt' }]] + ['@skilbourn/playwright-report-summary', { outputFile: 'custom-summary.txt' }]], ['html'], // other reporters ['dot'] ], @@ -98,7 +97,7 @@ this will generate a `custom-summary.txt` file such as : hello, 50 tests passed as expected in 03:51 (mm:ss) ``` -## Available Stats 🧰 +## Available Stats 🧰 The `stats` object provides information on your test suite: diff --git a/package.json b/package.json index 864f4c7..f3c16d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@skilbourn/playwright-report-summary", - "version": "0.2.0", + "version": "1.0.0", "description": "generate a customizable text summary of your playwright test results", "main": "dist/src/index.js", "types": "dist/src/index.d.ts",