From 6831c512eb5670b9e1264a681bcc6965e3f68319 Mon Sep 17 00:00:00 2001 From: Stephen Kilbourn Date: Wed, 26 Oct 2022 10:22:22 -0500 Subject: [PATCH] release 1.0 --- README.md | 15 +++++++-------- package.json | 2 +- 2 files changed, 8 insertions(+), 9 deletions(-) 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",