Test run
Started Test Run
Payload example:
📘This event is being sent when a new test run is started.
Event name
run.started
Payload fields
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.
Completed Test Run
Payload example:
📘This event is being sent when a test run is successfully completed.
Event name
run.completed
Payload fields
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
Aborted Test Run
Payload example:
📘This event is being sent when a test run is aborted.
Event name
run.aborted
Payload fields
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
Deleted Test Run
Payload example:
📘This event is being sent when a test run is deleted.
Event name
run.deleted
Payload fields
id
integer
Test run ID
Report visibility changed Test Run
Payload example:
📘This event is being sent when a public report visibility has been changed.
Event name
run.report_changed
Payload fields
id
integer
Test run ID
visible
boolean
Shows if public report is available or not
Updated Test Run
Payload example:
📘This event is being sent when a test plan is updated and new test cases were added.
Event name
run.updated
Payload fields
id
integer
Test run ID
cases_count
integer
Amount of test cases in run
Last updated