I want to know if there is some way to add a comment importing the results of a test case with JUnit or some other way. Here is my code.
export TESTINY_API_KEY=xxxx
/Users/user/testiny-importer-macos testrun
–confirm y
–name ‘x’
–update
–disable-nested-folders
–folder-separator test
–project ‘x’
–junit /Users/user/report.xml
Thank you.
1 Answer
1
mgi
2
Hi Adam,
The JUnit importer will add the contents of an error or failure element as a comment, for example:
<testcase ... >
<error message="Error message text either here">Or here</message>
...
</testcase>
There currently is no way to add a comment from a successful test result when importing JUnit XML
MIchael
Testiny Team