Hello all,
I'm using xray inside of JIRA, and what I want to do is to filter, inside of a test plan, all my test executions. Then, find the type of the issue that my executions are linked to: ia bug, task, story, etc. What I currently have is :
issue in testPlanTestExecutions(demo-xxx) AND ( issueFunction in hasLinks("relates to") )
I tried some options as linkedIssues, issueType to discover the type of issue that the execution is linked to, but I was not successfull.
Anyone has any idea? Maybe I'm missing a small detail to complete this.
Thank you in advance.
I managed to solve it by using the following FYI:
issue in testPlanTestExecutions(demo-xxx) AND ( issueFunction in hasLinks("relates to") AND issueFunction in linkedIssuesOf("issuetype = Story") )
Thank you all.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.