-
Notifications
You must be signed in to change notification settings - Fork 0
/
ctrf-report.json
79 lines (79 loc) · 1.75 KB
/
ctrf-report.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
{
"results": {
"tool": {
"name": "jest"
},
"summary": {
"tests": 10,
"passed": 5,
"failed": 2,
"pending": 1,
"skipped": 1,
"other": 1,
"start": 1706644023,
"stop": 1706644048
},
"tests": [
{
"name": "should be able to login",
"status": "passed",
"duration": 1200
},
{
"name": "should display profile information",
"status": "failed",
"duration": 800,
"message": "Assertion Failure: profile mismatch",
"trace": "ProfileTest.js:45"
},
{
"name": "should be able to update profile",
"status": "passed",
"duration": 1200,
"flaky": true,
"retries": 2
},
{
"name": "should be able to logout",
"status": "skipped",
"duration": 0
},
{
"name": "should validate user settings",
"status": "passed",
"duration": 1100
},
{
"name": "should fail to update profile on network failure",
"status": "failed",
"duration": 900,
"message": "Network Timeout",
"trace": "ProfileUpdateTest.js:60"
},
{
"name": "should load user data",
"status": "pending",
"duration": 0
},
{
"name": "should handle session timeouts",
"status": "passed",
"duration": 950,
"flaky": true,
"retries": 1
},
{
"name": "should clean up user session on logout",
"status": "other",
"duration": 1050
},
{
"name": "should allow user to change password",
"status": "passed",
"duration": 1300,
"flaky": true,
"retries": 3
}
]
}
}