generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hi,
Right now comment has an open section Failed tests
so one sees how many failed tests there is
But due to
playwright-report-summary/src/report.ts
Line 237 in 5e8b3c5
const open = status === 'failed' |
sections Flaky tests
and Skipped tests
are collapsed, so one doesn't immediately see how many of those there is.
I propose to alter
playwright-report-summary/src/report.ts
Line 235 in 5e8b3c5
const summary = `${upperCaseFirst(status)} tests` |
so that there's a count of each section (including Failed
, why not)
- const summary = `${upperCaseFirst(status)} tests`
+ const summary = `${upperCaseFirst(status)} tests (${tests.length})`
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request