-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-report.html
124 lines (123 loc) · 3.81 KB
/
test-report.html
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html><head><meta charset="utf-8"/><title>Test report</title><style type="text/css">html, body {
font-family: Arial, Helvetica, sans-serif;
font-size: 1rem;
margin: 0;
padding: 0;
color: #333;
}
body {
padding: 1rem;
font-size: 0.85rem;
}
header {
display: flex;
align-items: center;
}
#title {
margin: 0;
flex-grow: 1;
}
#logo {
height: 4rem;
}
#timestamp {
font-weight: bold;
color: #666;
margin-bottom: 0.5rem;
}
#summary {
color: #999;
margin-bottom: 1rem;
}
.suite-info {
padding: 1rem;
background-color: #eee;
border-bottom: 2px solid #999;
color: #999;
display: flex;
align-items: center;
}
.suite-info .suite-path {
font-weight: bold;
word-break: break-all;
flex-grow: 1;
}
.suite-info .suite-time {
margin-left: 0.5rem;
padding: 0.2rem 0.3rem;
font-size: 0.75rem;
}
.suite-info .suite-time.warn {
background-color: #D8000C;
color: #fff;
}
.suite-table {
width: 100%;
font-size: 0.85rem;
margin-bottom: 1em;
}
.suite-table td {
padding: 0.5rem;
}
.suite-table tr.passed {
background-color: #DFF2BF;
color: #4F8A10;
}
.suite-table tr.pending {
background-color: #FEEFB3;
color: #9F6000;
}
.suite-table tr.failed {
background-color: #FFBABA;
color: #D8000C;
}
.suite-table td {
font-size: 0.85rem;
border-bottom: 1px solid #aaa;
vertical-align: top;
}
.suite-table td.suite {
font-weight: bold;
width: 20%;
}
.suite-table td.test {
font-style: italic;
width: 60%;
}
.suite-table td.test .failureMsg {
font-size: 1rem;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
.suite-table td.result {
width: 20%;
text-align: right;
}
/* CONSOLE LOGS */
.suite-consolelog {
margin-bottom: 2rem;
padding: 1rem;
background-color: #efefef;
}
.suite-consolelog-header {
font-weight: bold;
}
.suite-consolelog-item {
padding: 0.5rem;
}
.suite-consolelog-item pre {
margin: 0;
}
.suite-consolelog-item-origin {
color: #777;
font-weight: bold;
}
.suite-consolelog-item-message {
color: #000;
font-size: 1rem;
padding: 0 0.5rem;
}
</style></head><body><div id="jesthtml-content"><header><h1 id="title">Test report</h1></header><div id="metadata-container"><div id="timestamp">Start: 2019-06-13 14:45:26</div><div id="summary">7 tests -- 7 passed / 0 failed / 0 pending</div></div><div class="suite-info"><div class="suite-path">C:\tmp\angular-jest-example\src\app\components\user-details\user-details.component.spec.ts</div><div class="suite-time">2.726s</div></div><table class="suite-table" cellspacing="0" cellpadding="0"><tr class="passed"><td class="suite">UserDetailsComponent</td><td class="test">can load instance</td><td class="result">passed in 0.093s</td></tr><tr class="passed"><td class="suite">UserDetailsComponent</td><td class="test">should renders correctly</td><td class="result">passed in 0.029s</td></tr></table><div class="suite-info"><div class="suite-path">C:\tmp\angular-jest-example\src\app\components\users-list\users-list.component.spec.ts</div><div class="suite-time">2.839s</div></div><table class="suite-table" cellspacing="0" cellpadding="0"><tr class="passed"><td class="suite">UsersListComponent</td><td class="test">can load instance</td><td class="result">passed in 0.102s</td></tr><tr class="passed"><td class="suite">UsersListComponent</td><td class="test">should call usersApiService</td><td class="result">passed in 0.03s</td></tr><tr class="passed"><td class="suite">UsersListComponent</td><td class="test">should render mock users</td><td class="result">passed in 0.036s</td></tr><tr class="passed"><td class="suite">UsersListComponent</td><td class="test">should renders correctly</td><td class="result">passed in 0.028s</td></tr><tr class="passed"><td class="suite">UsersListComponent</td><td class="test">should input firtst user to user info</td><td class="result">passed in 0.026s</td></tr></table></div></body></html>