-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
TestRunFinished.json
31 lines (31 loc) · 984 Bytes
/
TestRunFinished.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "TestRunFinished.json",
"additionalProperties": false,
"required": [
"success",
"timestamp"
],
"properties": {
"message": {
"description": "An informative message about the test run. Typically additional information about failure, but not necessarily.",
"type": "string"
},
"success": {
"description": "A test run is successful if all steps are either passed or skipped, all before/after hooks passed and no other exceptions where thrown.",
"type": "boolean"
},
"timestamp": {
"$ref": "./Timestamp.json",
"description": "Timestamp when the TestRun is finished"
},
"exception": {
"$ref": "./Exception.json",
"description": "Any exception thrown during the test run, if any. Does not include exceptions thrown while executing steps."
},
"testRunStartedId": {
"type": "string"
}
},
"type": "object"
}