Add file attribute to Junit testsuite report (#6425)

* feat: add file attribute to Junit testsuite report

* test: update tests to include file attribute

* fix: update playwright tests to support the new file attribute

---------

Co-authored-by: Thomas Vackier <thomas.vackier@inthepocket.com>
Co-authored-by: Bijin A B <bijin@usebruno.com>
This commit is contained in:
Thomas
2025-12-19 14:30:15 +01:00
committed by GitHub
parent 5f88e7d201
commit f47e9e9304
6 changed files with 29 additions and 9 deletions

View File

@@ -18,6 +18,7 @@ const makeJUnitOutput = async (results, outputPath) => {
const suite = {
'@name': result.name,
'@file': result.test.filename,
'@errors': 0,
'@failures': 0,
'@skipped': 0,