Retrieve test run results

Retrieve the results of the test run with a given ID.

URL: /test-runs/{id}/results

Method: GET

Success Responses

Code : 200 OK

Content: a result defined as:

{
    "passed": ["test"],
    "failed": ["test"],
    "errors": ["test"],
    "skipped": ["test"],
    "knownIssues": ["test"]
}

Where test is defined as:

{
    "class": "string",
    "selector": "string",
    "time": "number"
}

Example:: GET /test-runs/1/results

Last updated