Hello. I am trying to integrate execution results with X-ray and Jira. For this , I am importing an report.xml file to Jira with X-Ray API.
It is almost everything working fine but the executions in jira are created with a random id number, like : Execution results [1666291540373].
evidence:
https://prnt.sc/ADh_yxFDLHTl
I would like to know if there is anyway to set a default name to the executions.
Here an example of my report.xml file:
<?xml version="1.0" encoding="UTF-8" ?>
<testsuite name="TestCafe Tests: Chrome 106.0.0.0 / macOS 10.15.7" tests="1" failures="1" skipped="0" errors="1" time="60.033" timestamp="Thu, 20 Oct 2022 18:20:57 GMT" >
<testcase classname="based automation tests" name="TestNameExample" time="59.184">
<failure>
<![CDATA[
1) AssertionError: expected false to be truthy
Browser: Chrome 106.0.0.0 / macOS 10.15.7
]]>
</failure>
<system-out>
</system-out>
</testcase>
</testsuite>