OBJECT

TestRunIterationStepResult

Test Run iteration step result type

link GraphQL Schema definition

1type TestRunIterationStepResult {
2
3# Id of the Test Run step.
4id: String
5
6# Status of the Test Run step.
7status: StepStatus
8
9# Comment of the Test Run step.
10comment: String
11
12# Evidence of the Test Run step.
13evidence: [Evidence]
14
15# Defects of the Test Run step.
16defects: [String]
17
18# Actual Result of the Test Run step.
19actualResult: String
20
21}