Open
Description
Hi,
Thanks for a the great tool!
To make it even better I propose to allow making the accordion positions clickable so that when I see something failing I don't have to look for it in the deployed report
I mean:
playwright-report-summary/src/report.ts
Line 259 in 5e8b3c5
could become a
- const list = tests.map((test) => ` ${test.title}`).join('\n')
+ const list = tests.map((test) => ` [${test.title}](${reportUrl}#?testId=${test.id})`).join('\n')
either out of the box, or configurable via input.
How do you feel about it?