Introduce test reports widget for work items and expose it on GraphQL.
This only exposes testReports
collection.
In a follow-up, we should also add lastTestReportManuallyCreated
field.
related to #382590 (closed)
Requirements feature is only available with an Ultimate license.
WorkItem.requirement.last.to_global_id.to_s
query workItem {
workItem(id: "REQUIREMENT_GLOBAL_ID") {
title
widgets {
... on WorkItemWidgetTestReports {
testReports {
edges {
node {
id
state
}
}
}
}
}
}
}
You should see a collection of test reports associated to the requirement.
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.