-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjunit.xml
192 lines (177 loc) · 15.3 KB
/
junit.xml
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="jest tests" tests="41" failures="15" errors="0" time="3.025">
<testsuite name="postcss-shadowdom" errors="0" failures="15" skipped="0" timestamp="2024-08-22T16:14:26" time="2.881" tests="41">
<testcase classname="postcss-shadowdom should replace :root with :host" name="postcss-shadowdom should replace :root with :host" time="0.009">
</testcase>
<testcase classname="postcss-shadowdom should not modify other selectors" name="postcss-shadowdom should not modify other selectors" time="0">
</testcase>
<testcase classname="postcss-shadowdom should handle multiple :root selectors" name="postcss-shadowdom should handle multiple :root selectors" time="0">
</testcase>
<testcase classname="postcss-shadowdom should replace :root in complex selectors" name="postcss-shadowdom should replace :root in complex selectors" time="0">
</testcase>
<testcase classname="postcss-shadowdom should handle :root with pseudo-classes" name="postcss-shadowdom should handle :root with pseudo-classes" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should replace :root in comma-separated selectors" name="postcss-shadowdom should replace :root in comma-separated selectors" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle multiple :root occurrences in a single rule" name="postcss-shadowdom should handle multiple :root occurrences in a single rule" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should not replace :root within strings" name="postcss-shadowdom should not replace :root within strings" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle :root with attribute selectors" name="postcss-shadowdom should handle :root with attribute selectors" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle multiple attribute selectors" name="postcss-shadowdom should handle multiple attribute selectors" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should not modify :root-like substrings in other selectors" name="postcss-shadowdom should not modify :root-like substrings in other selectors" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle :root selector with spaces" name="postcss-shadowdom should handle :root selector with spaces" time="0">
</testcase>
<testcase classname="postcss-shadowdom should handle mixed :root and non-:root selectors" name="postcss-shadowdom should handle mixed :root and non-:root selectors" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle :root with child combinators" name="postcss-shadowdom should handle :root with child combinators" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle :root with descendant combinators" name="postcss-shadowdom should handle :root with descendant combinators" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle :root with adjacent sibling combinators" name="postcss-shadowdom should handle :root with adjacent sibling combinators" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle :root with general sibling combinators" name="postcss-shadowdom should handle :root with general sibling combinators" time="0">
</testcase>
<testcase classname="postcss-shadowdom should handle multiple complex cases in one stylesheet" name="postcss-shadowdom should handle multiple complex cases in one stylesheet" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should not modify @media rules content" name="postcss-shadowdom should not modify @media rules content" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom should handle :root inside @supports" name="postcss-shadowdom should handle :root inside @supports" time="0">
</testcase>
<testcase classname="postcss-shadowdom should not modify CSS custom properties definitions" name="postcss-shadowdom should not modify CSS custom properties definitions" time="0">
</testcase>
<testcase classname="postcss-shadowdom should handle :root with pseudo-elements" name="postcss-shadowdom should handle :root with pseudo-elements" time="0">
</testcase>
<testcase classname="postcss-shadowdom should handle case insensitivity of :root" name="postcss-shadowdom should handle case insensitivity of :root" time="0">
</testcase>
<testcase classname="postcss-shadowdom scope option should only transform :root when scope is not provided" name="postcss-shadowdom scope option should only transform :root when scope is not provided" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom scope option should transform selectors matching string scope" name="postcss-shadowdom scope option should transform selectors matching string scope" time="0.003">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":root { color: red; } :host { background: blue; }"
Received: ":root { color: red; } .theme { background: blue; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:155:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should transform selectors matching RegExp scope" name="postcss-shadowdom scope option should transform selectors matching RegExp scope" time="0.001">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":root { color: red; } :host { background: black; } :host { background: white; }"
Received: ":root { color: red; } .theme-dark { background: black; } .theme-light { background: white; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:163:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should transform selectors matching array of string and RegExp scopes" name="postcss-shadowdom scope option should transform selectors matching array of string and RegExp scopes" time="0.001">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host { color: red; } :host { background: blue; } .custom { padding: 10px; }"
Received: ":host { color: red; } .theme { background: blue; } .custom { padding: 10px; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:171:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should not transform selectors not matching the scope" name="postcss-shadowdom scope option should not transform selectors not matching the scope" time="0.001">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":root { color: red; } :host { background: blue; } .custom { padding: 10px; }"
Received: ":root { color: red; } .theme { background: blue; } .custom { padding: 10px; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:179:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle empty scope array" name="postcss-shadowdom scope option should handle empty scope array" time="0.001">
</testcase>
<testcase classname="postcss-shadowdom scope option should handle scope with no matches" name="postcss-shadowdom scope option should handle scope with no matches" time="0">
</testcase>
<testcase classname="postcss-shadowdom scope option should transform nested selectors matching the scope" name="postcss-shadowdom scope option should transform nested selectors matching the scope" time="0.001">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host { color: blue; .nested { background: red; } }"
Received: ".theme { color: blue; .nested { background: red; } }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:203:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle complex selectors with scope" name="postcss-shadowdom scope option should handle complex selectors with scope" time="0.001">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host.dark[data-mode='night'] { color: white; }"
Received: ".theme.dark[data-mode='night'] { color: white; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:211:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle multiple occurrences of scoped selectors" name="postcss-shadowdom scope option should handle multiple occurrences of scoped selectors" time="0">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host { color: blue; } .content { padding: 10px; } :host { background: red; }"
Received: ".theme { color: blue; } .content { padding: 10px; } .theme { background: red; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:219:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle case-insensitive RegExp scope" name="postcss-shadowdom scope option should handle case-insensitive RegExp scope" time="0">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host { color: blue; } :host { background: red; }"
Received: ".Theme { color: blue; } .THEME { background: red; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:227:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should not transform selectors within strings when using scope" name="postcss-shadowdom scope option should not transform selectors within strings when using scope" time="0.001">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host { content: '.theme'; }"
Received: ".theme { content: '.theme'; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:235:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle scope with attribute selectors" name="postcss-shadowdom scope option should handle scope with attribute selectors" time="0.001">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host { color: blue; }"
Received: "[data-theme] { color: blue; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:243:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle scope with pseudo-classes" name="postcss-shadowdom scope option should handle scope with pseudo-classes" time="0">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host:hover { color: blue; }"
Received: ".theme:hover { color: blue; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:249:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle scope with pseudo-elements" name="postcss-shadowdom scope option should handle scope with pseudo-elements" time="0">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host::before { content: ''; }"
Received: ".theme::before { content: ''; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:257:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle multiple selectors with some matching scope" name="postcss-shadowdom scope option should handle multiple selectors with some matching scope" time="0.001">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: ":host, .content, :host { color: blue; }"
Received: ".theme, .content, .theme-dark { color: blue; }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:265:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle scope in @media queries" name="postcss-shadowdom scope option should handle scope in @media queries" time="0">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: "@media (min-width: 768px) { :host { color: blue; } }"
Received: "@media (min-width: 768px) { .theme { color: blue; } }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:273:7)</failure>
</testcase>
<testcase classname="postcss-shadowdom scope option should handle scope in @supports rules" name="postcss-shadowdom scope option should handle scope in @supports rules" time="0">
<failure>Error: expect(received).toEqual(expected) // deep equality
Expected: "@supports (display: grid) { :host { display: grid; } }"
Received: "@supports (display: grid) { .theme { display: grid; } }"
at run (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:8:22)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Object.<anonymous> (C:\dev\projects\postcss-shadowdom\src\index.spec.ts:281:7)</failure>
</testcase>
</testsuite>
</testsuites>