-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
TestCaseStarted.json
32 lines (32 loc) · 1.07 KB
/
TestCaseStarted.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
32
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "TestCaseStarted.json",
"additionalProperties": false,
"required": [
"attempt",
"id",
"testCaseId",
"timestamp"
],
"properties": {
"attempt": {
"description": "*\n The first attempt should have value 0, and for each retry the value\n should increase by 1.",
"type": "integer"
},
"id": {
"description": "*\n Because a `TestCase` can be run multiple times (in case of a retry),\n we use this field to group messages relating to the same attempt.",
"type": "string"
},
"testCaseId": {
"type": "string"
},
"workerId": {
"description": "An identifier for the worker process running this test case, if test cases are being run in parallel. The identifier will be unique per worker, but no particular format is defined - it could be an index, uuid, machine name etc - and as such should be assumed that it's not human readable.",
"type": "string"
},
"timestamp": {
"$ref": "./Timestamp.json"
}
},
"type": "object"
}