Payload example:
{
"event_name": "run.started",
"timestamp": 1650540069,
"payload": {
"id": 1,
"title": "Test run 2022/04/21",
"description": null,
"plan": {
"id": 3,
"title": "d"
},
"cases_count": 14,
"environment": null
},
"team_member_id": 40,
"project_code": "ID"
}
This event is being sent when a new test run is started.
run.started
Parameter | Type | Description |
---|---|---|
id | integer | Test run ID |
title | string | Test run title |
description | string | Test run description |
plan | object | Test plan ID and title. |
cases_count | integer | Amount of test cases in run |
environment | string | Environment slug. Nullable. |
Payload example:
{
"event_name": "run.completed",
"timestamp": 1650540194,
"payload": {
"id": 2,
"cases": 14,
"passed": 0,
"failed": 0,
"blocked": 0,
"duration": 0
},
"team_member_id": 40,
"project_code": "ID"
}
This event is being sent when a test run is successfully completed.
run.completed
Parameter | Type | Description |
---|---|---|
id | integer | Test run ID |
cases | integer | Amount of test cases in a run |
passed | integer | Amount of passed cases |
failed | integer | Amount of failed cases |
blocked | integer | Amount of blocked cases |
duration | integer | Test run duration in milliseconds |
Payload example:
{
"event_name": "run.aborted",
"timestamp": 1650540148,
"payload": {
"id": 1,
"cases": 14,
"passed": 0,
"untested": 14,
"failed": 0,
"blocked": 0,
"skipped": 0,
"duration": 0
},
"team_member_id": 40,
"project_code": "ID"
}
This event is being sent when a test run is aborted.
run.aborted
Parameter | Type | Description |
---|---|---|
id | integer | Test run ID |
cases | integer | Amount of test cases in a run |
passed | integer | Amount of passed cases |
skiped | integer | Amount of skiped cases |
failed | integer | Amount of failed cases |
untested | integer | Amount of untested cases |
blocked | integer | Amount of blocked cases |
duration | integer | Test run duration in milliseconds |
Payload example:
{
"event_name": "run.deleted",
"timestamp": 1650540289,
"payload": {
"id": 1
},
"team_member_id": 40,
"project_code": "ID"
}
This event is being sent when a test run is deleted.
run.deleted
Parameter | Type | Description |
---|---|---|
id | integer | Test run ID |
Payload example:
{
"event_name": "run.report_changed",
"timestamp": 1650540222,
"payload": {
"id": 2,
"visible": true
},
"team_member_id": 40,
"project_code": "ID"
}
This event is being sent when a public report visibility has been changed.
run.report_changed
Parameter | Type | Description |
---|---|---|
id | integer | Test run ID |
visible | boolean | Shows if public report is available or not |
Payload example:
{
"event_name": "run.updated",
"timestamp": 1650540114,
"payload": {
"id": 1,
"cases_added": 14
},
"team_member_id": 40,
"project_code": "ID"
}
This event is being sent when a test plan is updated and new test cases were added.
run.updated
Parameter | Type | Description |
---|---|---|
id | integer | Test run ID |
cases_count | integer | Amount of test cases in run |