You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to give a custom test suite name in the test results xml which are getting generated using the karma junit reporter?
By default it takes the browser name. Due to this reason, my test reports of multiple ui modules are getting generated with same test suite name and I am running into some issues in applications which uses this test results xml files.
The below code snippet from the package's index.js file is causing the issue. Is there a way to override this?
Is there a way to give a custom test suite name in the test results xml which are getting generated using the karma junit reporter?
By default it takes the browser name. Due to this reason, my test reports of multiple ui modules are getting generated with same test suite name and I am running into some issues in applications which uses this test results xml files.
The below code snippet from the package's index.js file is causing the issue. Is there a way to override this?
https://github.com/karma-runner/karma-junit-reporter/blob/master/index.js
suite = suites[browser.id] = builder.create('testsuite')
| suite.att('name', browser.name)
| .att('package', pkgName)
| .att('timestamp', timestamp)
| .att('id', 0)
| .att('hostname', os.hostname())
The text was updated successfully, but these errors were encountered: