@@ -58,31 +58,35 @@ it('collects styles', () => {
58
58
</svg>
59
59
` ) ;
60
60
const stylesheet = collectStylesheet ( root ) ;
61
- expect ( computeStyle ( stylesheet , getElementById ( root , 'class' ) ) ) . toEqual ( {
62
- fill : { type : 'static' , inherited : false , value : 'red' } ,
63
- } ) ;
64
- expect ( computeStyle ( stylesheet , getElementById ( root , 'two-classes' ) ) ) . toEqual (
61
+ expect ( computeStyle ( stylesheet , getElementById ( root , 'class' ) ) ) . toStrictEqual (
65
62
{
66
- fill : { type : 'static' , inherited : false , value : 'green' } ,
67
- stroke : { type : 'static' , inherited : false , value : 'black' } ,
63
+ fill : { type : 'static' , inherited : false , value : 'red' } ,
68
64
} ,
69
65
) ;
70
- expect ( computeStyle ( stylesheet , getElementById ( root , 'attribute' ) ) ) . toEqual ( {
66
+ expect (
67
+ computeStyle ( stylesheet , getElementById ( root , 'two-classes' ) ) ,
68
+ ) . toStrictEqual ( {
69
+ fill : { type : 'static' , inherited : false , value : 'green' } ,
70
+ stroke : { type : 'static' , inherited : false , value : 'black' } ,
71
+ } ) ;
72
+ expect (
73
+ computeStyle ( stylesheet , getElementById ( root , 'attribute' ) ) ,
74
+ ) . toStrictEqual ( {
71
75
fill : { type : 'static' , inherited : false , value : 'purple' } ,
72
76
} ) ;
73
77
expect (
74
78
computeStyle ( stylesheet , getElementById ( root , 'inline-style' ) ) ,
75
- ) . toEqual ( {
79
+ ) . toStrictEqual ( {
76
80
fill : { type : 'static' , inherited : false , value : 'grey' } ,
77
81
} ) ;
78
- expect ( computeStyle ( stylesheet , getElementById ( root , 'inheritance' ) ) ) . toEqual (
79
- {
80
- fill : { type : 'static' , inherited : true , value : 'yellow' } ,
81
- } ,
82
- ) ;
82
+ expect (
83
+ computeStyle ( stylesheet , getElementById ( root , 'inheritance' ) ) ,
84
+ ) . toStrictEqual ( {
85
+ fill : { type : 'static' , inherited : true , value : 'yellow' } ,
86
+ } ) ;
83
87
expect (
84
88
computeStyle ( stylesheet , getElementById ( root , 'nested-inheritance' ) ) ,
85
- ) . toEqual ( {
89
+ ) . toStrictEqual ( {
86
90
fill : { type : 'static' , inherited : true , value : 'blue' } ,
87
91
} ) ;
88
92
} ) ;
@@ -107,33 +111,33 @@ it('prioritizes different kinds of styles', () => {
107
111
const stylesheet = collectStylesheet ( root ) ;
108
112
expect (
109
113
computeStyle ( stylesheet , getElementById ( root , 'complex-selector' ) ) ,
110
- ) . toEqual ( {
114
+ ) . toStrictEqual ( {
111
115
fill : { type : 'static' , inherited : false , value : 'red' } ,
112
116
} ) ;
113
117
expect (
114
118
computeStyle ( stylesheet , getElementById ( root , 'override-selector' ) ) ,
115
- ) . toEqual ( {
119
+ ) . toStrictEqual ( {
116
120
fill : { type : 'static' , inherited : false , value : 'blue' } ,
117
121
} ) ;
118
122
expect (
119
123
computeStyle (
120
124
stylesheet ,
121
125
getElementById ( root , 'attribute-over-inheritance' ) ,
122
126
) ,
123
- ) . toEqual ( {
127
+ ) . toStrictEqual ( {
124
128
fill : { type : 'static' , inherited : false , value : 'orange' } ,
125
129
} ) ;
126
130
expect (
127
131
computeStyle ( stylesheet , getElementById ( root , 'style-rule-over-attribute' ) ) ,
128
- ) . toEqual ( {
132
+ ) . toStrictEqual ( {
129
133
fill : { type : 'static' , inherited : false , value : 'blue' } ,
130
134
} ) ;
131
135
expect (
132
136
computeStyle (
133
137
stylesheet ,
134
138
getElementById ( root , 'inline-style-over-style-rule' ) ,
135
139
) ,
136
- ) . toEqual ( {
140
+ ) . toStrictEqual ( {
137
141
fill : { type : 'static' , inherited : false , value : 'purple' } ,
138
142
} ) ;
139
143
} ) ;
@@ -153,23 +157,23 @@ it('prioritizes important styles', () => {
153
157
const stylesheet = collectStylesheet ( root ) ;
154
158
expect (
155
159
computeStyle ( stylesheet , getElementById ( root , 'complex-selector' ) ) ,
156
- ) . toEqual ( {
160
+ ) . toStrictEqual ( {
157
161
fill : { type : 'static' , inherited : false , value : 'green' } ,
158
162
} ) ;
159
163
expect (
160
164
computeStyle (
161
165
stylesheet ,
162
166
getElementById ( root , 'style-rule-over-inline-style' ) ,
163
167
) ,
164
- ) . toEqual ( {
168
+ ) . toStrictEqual ( {
165
169
fill : { type : 'static' , inherited : false , value : 'green' } ,
166
170
} ) ;
167
171
expect (
168
172
computeStyle (
169
173
stylesheet ,
170
174
getElementById ( root , 'inline-style-over-style-rule' ) ,
171
175
) ,
172
- ) . toEqual ( {
176
+ ) . toStrictEqual ( {
173
177
fill : { type : 'static' , inherited : false , value : 'purple' } ,
174
178
} ) ;
175
179
} ) ;
@@ -195,23 +199,29 @@ it('treats at-rules and pseudo-classes as dynamic styles', () => {
195
199
</svg>
196
200
` ) ;
197
201
const stylesheet = collectStylesheet ( root ) ;
198
- expect ( computeStyle ( stylesheet , getElementById ( root , 'media-query' ) ) ) . toEqual (
202
+ expect (
203
+ computeStyle ( stylesheet , getElementById ( root , 'media-query' ) ) ,
204
+ ) . toStrictEqual ( {
205
+ fill : { type : 'dynamic' , inherited : false } ,
206
+ } ) ;
207
+ expect ( computeStyle ( stylesheet , getElementById ( root , 'hover' ) ) ) . toStrictEqual (
199
208
{
200
209
fill : { type : 'dynamic' , inherited : false } ,
201
210
} ,
202
211
) ;
203
- expect ( computeStyle ( stylesheet , getElementById ( root , 'hover' ) ) ) . toEqual ( {
204
- fill : { type : 'dynamic' , inherited : false } ,
205
- } ) ;
206
- expect ( computeStyle ( stylesheet , getElementById ( root , 'inherited' ) ) ) . toEqual ( {
212
+ expect (
213
+ computeStyle ( stylesheet , getElementById ( root , 'inherited' ) ) ,
214
+ ) . toStrictEqual ( {
207
215
fill : { type : 'dynamic' , inherited : true } ,
208
216
} ) ;
209
217
expect (
210
218
computeStyle ( stylesheet , getElementById ( root , 'inherited-overriden' ) ) ,
211
- ) . toEqual ( {
219
+ ) . toStrictEqual ( {
212
220
fill : { type : 'static' , inherited : false , value : 'blue' } ,
213
221
} ) ;
214
- expect ( computeStyle ( stylesheet , getElementById ( root , 'static' ) ) ) . toEqual ( {
222
+ expect (
223
+ computeStyle ( stylesheet , getElementById ( root , 'static' ) ) ,
224
+ ) . toStrictEqual ( {
215
225
fill : { type : 'static' , inherited : false , value : 'black' } ,
216
226
} ) ;
217
227
} ) ;
@@ -234,17 +244,19 @@ it('considers <style> media attribute', () => {
234
244
</svg>
235
245
` ) ;
236
246
const stylesheet = collectStylesheet ( root ) ;
237
- expect ( computeStyle ( stylesheet , getElementById ( root , 'media-query' ) ) ) . toEqual (
238
- {
239
- fill : { type : 'dynamic' , inherited : false } ,
240
- } ,
241
- ) ;
247
+ expect (
248
+ computeStyle ( stylesheet , getElementById ( root , 'media-query' ) ) ,
249
+ ) . toStrictEqual ( {
250
+ fill : { type : 'dynamic' , inherited : false } ,
251
+ } ) ;
242
252
expect (
243
253
computeStyle ( stylesheet , getElementById ( root , 'kinda-static' ) ) ,
244
- ) . toEqual ( {
254
+ ) . toStrictEqual ( {
245
255
fill : { type : 'dynamic' , inherited : false } ,
246
256
} ) ;
247
- expect ( computeStyle ( stylesheet , getElementById ( root , 'static' ) ) ) . toEqual ( {
257
+ expect (
258
+ computeStyle ( stylesheet , getElementById ( root , 'static' ) ) ,
259
+ ) . toStrictEqual ( {
248
260
fill : { type : 'static' , inherited : false , value : 'blue' } ,
249
261
} ) ;
250
262
} ) ;
@@ -267,15 +279,19 @@ it('ignores <style> with invalid type', () => {
267
279
</svg>
268
280
` ) ;
269
281
const stylesheet = collectStylesheet ( root ) ;
270
- expect ( computeStyle ( stylesheet , getElementById ( root , 'valid-type' ) ) ) . toEqual ( {
282
+ expect (
283
+ computeStyle ( stylesheet , getElementById ( root , 'valid-type' ) ) ,
284
+ ) . toStrictEqual ( {
271
285
fill : { type : 'static' , inherited : false , value : 'red' } ,
272
286
} ) ;
273
- expect ( computeStyle ( stylesheet , getElementById ( root , 'empty-type' ) ) ) . toEqual ( {
287
+ expect (
288
+ computeStyle ( stylesheet , getElementById ( root , 'empty-type' ) ) ,
289
+ ) . toStrictEqual ( {
274
290
fill : { type : 'static' , inherited : false , value : 'green' } ,
275
291
} ) ;
276
292
expect (
277
293
computeStyle ( stylesheet , getElementById ( root , 'invalid-type' ) ) ,
278
- ) . toEqual ( { } ) ;
294
+ ) . toStrictEqual ( { } ) ;
279
295
} ) ;
280
296
281
297
it ( 'ignores keyframes atrule' , ( ) => {
@@ -301,7 +317,9 @@ it('ignores keyframes atrule', () => {
301
317
</svg>
302
318
` ) ;
303
319
const stylesheet = collectStylesheet ( root ) ;
304
- expect ( computeStyle ( stylesheet , getElementById ( root , 'element' ) ) ) . toEqual ( {
320
+ expect (
321
+ computeStyle ( stylesheet , getElementById ( root , 'element' ) ) ,
322
+ ) . toStrictEqual ( {
305
323
animation : {
306
324
type : 'static' ,
307
325
inherited : false ,
@@ -330,7 +348,9 @@ it('ignores @-webkit-keyframes atrule', () => {
330
348
</svg>
331
349
` ) ;
332
350
const stylesheet = collectStylesheet ( root ) ;
333
- expect ( computeStyle ( stylesheet , getElementById ( root , 'element' ) ) ) . toEqual ( {
351
+ expect (
352
+ computeStyle ( stylesheet , getElementById ( root , 'element' ) ) ,
353
+ ) . toStrictEqual ( {
334
354
animation : {
335
355
type : 'static' ,
336
356
inherited : false ,
0 commit comments