From 97e377d8dcf32f332d6b28f4fd05806a18573018 Mon Sep 17 00:00:00 2001 From: Stephen Kilbourn Date: Wed, 26 Oct 2022 10:26:26 -0500 Subject: [PATCH] correct table format in README --- README.md | 3 +-- package.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7e11c7b..b9d74db 100644 --- a/README.md +++ b/README.md @@ -104,8 +104,7 @@ The `stats` object provides information on your test suite: | **Name** | **type** | **Description** | |--------------------------|----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------| | testsInSuite | number | Total number of tests in suite | -| totalTestsRun | number | t -otal tests run. Retried tests can make this value larger than testsInSuite | +| totalTestsRun | number | total tests run. Retried tests can make this value larger than testsInSuite | | expectedResults | number | total test finished as [expected](https://playwright.dev/docs/api/class-testcase#test-case-expected-status) | | unexpectedResults | number | total tests not finished as expected | | flakyTests | number | total of tests that passed when retried | diff --git a/package.json b/package.json index f3c16d6..014b240 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@skilbourn/playwright-report-summary", - "version": "1.0.0", + "version": "1.0.1", "description": "generate a customizable text summary of your playwright test results", "main": "dist/src/index.js", "types": "dist/src/index.d.ts",