-
Notifications
You must be signed in to change notification settings - Fork 0
/
v1-sample.json
102 lines (102 loc) · 2.23 KB
/
v1-sample.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"$schema": "./v1.json",
"framework": {
"language": "Ruby",
"kind": "RSpec"
},
"summary": {
"status": { "kind": "failed" },
"tests": 3,
"otherErrors": 3,
"retries": 1,
"canceled": 0,
"failed": 1,
"pended": 0,
"quarantined": 1,
"skipped": 0,
"successful": 1,
"timedOut": 0,
"todo": 0
},
"tests": [
{
"id": "./spec/some/path/foo_spec.rb:12",
"name": "Sky::Moon when it's dark out is bright",
"lineage": [
"Sky::Moon",
"when it's dark out",
"is bright"
],
"location": {
"file": "./spec/some/path/foo_spec.rb",
"line": 12
},
"attempt": {
"durationInNanoseconds": 1100300300,
"status": {
"kind": "successful"
}
}
},
{
"id": "./spec/some/path/foo_spec.rb:20",
"name": "Sky::Moon when it's dark out is not bright",
"lineage": [
"Sky::Moon",
"when it's dark out",
"is not bright"
],
"location": {
"file": "./spec/some/path/foo_spec.rb",
"line": 20
},
"attempt": {
"durationInNanoseconds": 1200000000,
"status": {
"kind": "quarantined",
"originalStatus": {
"kind": "failed",
"message": "The moon is bright"
}
}
}
},
{
"name": "Sky::Moon does not exist",
"attempt": {
"durationInNanoseconds": 1200000000,
"finishedAt": "2022-11-15T15:01:49Z",
"status": { "kind": "successful" },
"meta": { "env": "foo" }
},
"pastAttempts": [
{
"durationInNanoseconds": 1500000000,
"finishedAt": "2022-11-15T07:01:34Z",
"status": {
"kind": "failed",
"message": "The moon is in the sky"
}
}
]
}
],
"otherErrors": [
{ "message": "something broke" },
{
"message": "An error occurred",
"exception": "FooError",
"location": {
"file": "./some/path/to/file.rb",
"line": 10
}
}
],
"derivedFrom": [
{
"originalFilePath": "./some/path/to/file.json",
"contents": "base64encodedoriginalfile",
"groupNumber": 1
}
]
}