-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.test.js
More file actions
861 lines (750 loc) · 25 KB
/
index.test.js
File metadata and controls
861 lines (750 loc) · 25 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
const postcss = require('postcss');
const unitProcessor = require('./index');
const testProcess = async (input, output, opts, postcssOpts = { from: undefined }) => {
const result = await postcss([unitProcessor(opts)]).process(input, postcssOpts);
expect(result.css).toEqual(output);
expect(result.warnings()).toHaveLength(0);
};
describe('postcss-unit-processor', () => {
// Test default behavior
it('should process units with default processor', async () => {
await testProcess(
'div { width: 100px; }',
'div { width: 100px; }'
);
});
// Test custom processor
it('should process units with custom processor', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 200px; }',
{ processor }
);
});
// Test unit precision
it('should apply unit precision', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value / 3, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 33.33333px; }',
{ processor, unitPrecision: 5 }
);
});
// Test property list filtering
it('should only process specified properties', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; height: 50px; }',
'div { width: 200px; height: 50px; }',
{ processor, propList: ['width'] }
);
});
// Test selector blacklist
it('should skip blacklisted selectors', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'.skip-class { width: 100px; } .normal-class { width: 100px; }',
'.skip-class { width: 100px; } .normal-class { width: 200px; }',
{ processor, selectorBlackList: [/skip/] }
);
});
// Test media query parameter processing
it('should process units in media query parameters when enabled', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'@media (max-width: 600px) { div { width: 100px; } }',
'@media (max-width: 1200px) { div { width: 200px; } }',
{ processor, mediaQuery: true }
);
});
// Test media query parameter processing disabled
it('should not process units in media query parameters when disabled', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'@media (max-width: 600px) { div { width: 100px; } }',
'@media (max-width: 600px) { div { width: 200px; } }',
{ processor, mediaQuery: false }
);
});
// Test custom unit list
it('should process custom units', async () => {
const processor = (value, unit) => {
if (unit === 'custom') {
return { value: value * 2, unit: 'custom' };
}
return { value, unit };
};
await testProcess(
'div { width: 100custom; }',
'div { width: 200custom; }',
{ processor, customUnitList: ['custom'] }
);
});
// Test replace option
it('should clone declaration when replace is false', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 100px; width: 200px; }',
{ processor, replace: false }
);
});
// Test property list with startWith pattern
it('should process properties starting with specified string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { max-width: 100px; min-width: 50px; width-test: 75px; height: 25px; }',
'div { max-width: 200px; min-width: 50px; width-test: 75px; height: 25px; }',
{ processor, propList: ['max*'] }
);
});
// Test property list with endWith pattern
it('should process properties ending with specified string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { max-width: 100px; min-width: 50px; test-width: 75px; height: 25px; }',
'div { max-width: 200px; min-width: 100px; test-width: 150px; height: 25px; }',
{ processor, propList: ['*width'] }
);
});
// Test property list with contain pattern
it('should process properties containing specified string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { max-width: 100px; min-width-test: 50px; width: 75px; height: 25px; }',
'div { max-width: 200px; min-width-test: 100px; width: 150px; height: 25px; }',
{ processor, propList: ['*width*'] }
);
});
// Test property list with not exact pattern
it('should not process properties exactly matching not pattern', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { max-width: 100px; min-width: 50px; width: 75px; height: 25px; }',
'div { max-width: 200px; min-width: 100px; width: 150px; height: 25px; }',
{ processor, propList: ['*', '!height'] }
);
});
// Test selector blacklist with string
it('should skip selectors matching blacklist string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'.skip-class { width: 100px; } .normal-class { width: 100px; }',
'.skip-class { width: 100px; } .normal-class { width: 200px; }',
{ processor, selectorBlackList: ['skip-class'] }
);
});
// Test processor returning invalid type
it('should handle processor returning invalid type', async () => {
const processor = () => {
return Symbol('invalid');
};
await testProcess(
'div { width: 100px; }',
'div { width: 100px; }',
{ processor }
);
});
// Test quoted string values that should not be processed
it('should not process values in quoted strings', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { content: "100px"; background: url(100px); width: 100px; }',
'div { content: "100px"; background: url(100px); width: 200px; }',
{ processor }
);
});
// Test selector not in blacklist
it('should process units when selector does not match blacklist', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 200px; }',
{ processor, selectorBlackList: ['test'] }
);
});
// Test property list with notContain pattern
it('should not process properties containing blacklisted string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { max-width: 100px; min-test-width: 50px; width: 75px; height: 25px; }',
'div { max-width: 200px; min-test-width: 50px; width: 150px; height: 50px; }',
{ processor, propList: ['*', '!*test*'] }
);
});
// Test property list with notStartWith pattern
it('should not process properties starting with blacklisted string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { max-width: 100px; test-width: 50px; width: 75px; height: 25px; }',
'div { max-width: 200px; test-width: 50px; width: 150px; height: 50px; }',
{ processor, propList: ['*', '!test*'] }
);
});
// Test property list with notEndWith pattern
it('should not process properties ending with blacklisted string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { max-width: 100px; width-test: 50px; width: 75px; height: 25px; }',
'div { max-width: 200px; width-test: 50px; width: 150px; height: 50px; }',
{ processor, propList: ['*', '!*test'] }
);
});
// Test exclude option with function that returns true
it('should exclude files when exclude function returns true', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 100px; }',
{ processor, exclude: () => true },
{ from: 'test.css' }
);
});
// Test exclude option with function that returns false
it('should exclude files when exclude function returns false', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 200px; }',
{ processor, exclude: () => '(' !== '(' },
{ from: 'test.css' }
);
});
// Test exclude option with string that matches file path
it('should exclude files when file path contains exclude string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 100px; }',
{ processor, exclude: 'test' },
{ from: 'test.css' }
);
});
// Test exclude option with regex that matches file path
it('should exclude files when file path matches exclude regex', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 100px; }',
{ processor, exclude: /test/ },
{ from: 'test.css' }
);
});
// Test media query processing when excluded
it('should not process media queries when file is excluded', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'@media (max-width: 600px) { div { width: 100px; } }',
'@media (max-width: 600px) { div { width: 100px; } }',
{ processor, mediaQuery: true, exclude: /test/ },
{ from: 'test.css' }
);
});
// Test blacklistedSelector function with undefined selector
it('should handle undefined selector in blacklist check', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
const testPlugin = () => {
return {
postcssPlugin: 'test-manipulation',
Once(root) {
// Apply unitProcessor first
const unitProc = unitProcessor({ processor, selectorBlackList: ['test'] });
if (unitProc.Once) unitProc.Once(root);
root.walkDecls(decl => {
if (decl.prop === 'width') {
// Temporarily set selector to non-string to trigger the blacklist check
const originalSelector = decl.parent.selector;
decl.parent.selector = undefined;
// Manually call the blacklist check portion
if (unitProc.Declaration) {
try {
unitProc.Declaration(decl);
} catch (e) {
// Expected to fail due to unitReplace not being properly initialized in this context
}
}
// Restore selector
decl.parent.selector = originalSelector;
}
});
}
};
};
testPlugin.postcss = true;
const input = 'div { width: 100px; }';
await postcss([testPlugin()])
.process(input, { from: undefined });
});
// Test customUnitList with non-array value
it('should handle non-array customUnitList', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 200px; }',
{ processor, customUnitList: 'not-an-array' }
);
});
// Test customUnitList with invalid units
it('should filter out invalid custom units', async () => {
const processor = (value, unit) => {
if (unit === 'valid') {
return { value: value * 2, unit: 'valid' };
}
return { value, unit };
};
await testProcess(
'div { width: 100valid; margin: 50invalid123; padding: 25; }',
'div { width: 200valid; margin: 50invalid123; padding: 25; }',
{
processor,
customUnitList: [
'valid', // valid
'invalid123', // invalid - contains numbers
123, // invalid - not a string
'', // invalid - empty string
' ', // invalid - only whitespace
null, // invalid - null
'spec@al' // invalid - contains special chars
]
}
);
});
// Test processor returning object with null value
it('should handle processor returning object with null value', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: null, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 0px; }',
{ processor }
);
});
// Test processor returning object with falsy unit
it('should handle processor returning object with falsy unit', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: 50, unit: '' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 50px; }',
{ processor }
);
});
// Test processor returning string number
it('should handle processor returning string number', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return '75.5';
}
return value;
};
await testProcess(
'div { width: 100px; }',
'div { width: 75.5px; }',
{ processor }
);
});
// Test processor returning NaN string
it('should handle processor returning non-numeric string', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return 'not-a-number';
}
return value;
};
await testProcess(
'div { width: 100px; }',
'div { width: 0px; }',
{ processor }
);
});
// Test processor returning 0 value
it('should handle processor returning 0 value', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return 0;
}
return value;
};
await testProcess(
'div { width: 100px; }',
'div { width: 0px; }',
{ processor }
);
});
// Test processor returning object with 0 value
it('should handle processor returning object with 0 value', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: 0, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; }',
'div { width: 0px; }',
{ processor }
);
});
// Test processor returning exact number type
it('should handle processor returning exact number type', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return 42.75;
}
return value;
};
await testProcess(
'div { width: 100px; }',
'div { width: 42.75px; }',
{ processor }
);
});
// percentage units should be preserved in hsl functions
it('should preserve percentage units in hsl functions when value is 0', async () => {
const processor = (value, unit) => {
if (unit === '%' && value === 0) {
return 0; // Simulate a processor that returns 0 for 0% values
}
return value;
};
await testProcess(
':root { --theme-secondary-hs: 0, 0%; --theme-secondary: hsl(0, 0%, 85%); }',
':root { --theme-secondary-hs: 0, 0%; --theme-secondary: hsl(0, 0%, 85%); }',
{ processor }
);
});
// percentage units should be preserved when processor returns 0
it('should preserve percentage units when processor returns 0', async () => {
const processor = (value, unit) => {
if (unit === '%' && value === 0) {
return 0; // Simulate a processor that returns 0 for 0% values
}
return value;
};
await testProcess(
'div { width: 0%; height: 100%; }',
'div { width: 0%; height: 100%; }',
{ processor }
);
});
// Test unitList with exact match
it('should only process specified units when unitList is provided', async () => {
const processor = (value, unit) => {
if (unit === 'rem') {
return { value: value * 2, unit: 'rem' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; }',
'div { width: 100px; height: 100rem; margin: 20em; }',
{ processor, unitList: ['rem'] }
);
});
// Test unitList with multiple units
it('should process multiple specified units when unitList contains multiple units', async () => {
const processor = (value, unit) => {
if (unit === 'rem' || unit === 'em') {
return { value: value * 2, unit: unit };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; padding: 10pt; }',
'div { width: 100px; height: 100rem; margin: 40em; padding: 10pt; }',
{ processor, unitList: ['rem', 'em'] }
);
});
// Test unitList with wildcard
it('should process all units when unitList contains wildcard', async () => {
const processor = (value, unit) => {
if (unit === 'px') {
return { value: value * 2, unit: 'px' };
}
return { value, unit };
};
await testProcess(
'div { width: 100px; height: 50rem; }',
'div { width: 200px; height: 50rem; }',
{ processor, unitList: ['*'] }
);
});
// Test unitList with not exact pattern
it('should not process units when unitList contains negation pattern', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; }',
'div { width: 100px; height: 100rem; margin: 40em; }',
{ processor, unitList: ['*', '!px'] }
);
});
// Test unitList with startWith pattern
it('should process units starting with specified string', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; padding: 10pt; }',
'div { width: 200px; height: 50rem; margin: 20em; padding: 20pt; }',
{ processor, unitList: ['p*'] }
);
});
// Test unitList with endWith pattern
it('should process units ending with specified string', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; padding: 10pt; }',
'div { width: 100px; height: 100rem; margin: 40em; padding: 10pt; }',
{ processor, unitList: ['*m'] }
);
});
// Test unitList with contain pattern
it('should process units containing specified string', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; padding: 10pt; }',
'div { width: 100px; height: 100rem; margin: 40em; padding: 10pt; }',
{ processor, unitList: ['*e*'] }
);
});
// Test unitList with notContain pattern
it('should not process units containing blacklisted string', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; padding: 10pt; }',
'div { width: 200px; height: 50rem; margin: 20em; padding: 20pt; }',
{ processor, unitList: ['*', '!*e*'] }
);
});
// Test unitList with notStartWith pattern
it('should not process units starting with blacklisted string', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; padding: 10pt; }',
'div { width: 100px; height: 100rem; margin: 40em; padding: 10pt; }',
{ processor, unitList: ['*', '!p*'] }
);
});
// Test unitList with notEndWith pattern
it('should not process units ending with blacklisted string', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; padding: 10pt; }',
'div { width: 200px; height: 50rem; margin: 20em; padding: 20pt; }',
{ processor, unitList: ['*', '!*m'] }
);
});
// Test unitList with custom units
it('should process custom units when included in unitList', async () => {
const processor = (value, unit) => {
if (unit === 'custom') {
return { value: value * 2, unit: 'custom' };
}
return { value, unit };
};
await testProcess(
'div { width: 100custom; height: 50px; }',
'div { width: 200custom; height: 50px; }',
{ processor, customUnitList: ['custom'], unitList: ['custom'] }
);
});
// Test unitList with mixed patterns
it('should handle mixed patterns in unitList', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; margin: 20em; padding: 10pt; font-size: 14vw; }',
'div { width: 200px; height: 50rem; margin: 40em; padding: 10pt; font-size: 28vw; }',
{ processor, unitList: ['px', 'em', 'vw'] }
);
});
// Test unitList default behavior (backward compatibility)
it('should process all units by default for backward compatibility', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; }',
'div { width: 200px; height: 100rem; }',
{ processor }
);
});
// Test unitList with empty array
it('should not process any units when unitList is empty array', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; }',
'div { width: 100px; height: 50rem; }',
{ processor, unitList: [] }
);
});
// Test unitList with media queries
it('should apply unitList filtering to media queries when enabled', async () => {
const processor = (value, unit) => {
if (unit === 'rem') {
return { value: value * 2, unit: 'rem' };
}
return { value, unit };
};
await testProcess(
'@media (max-width: 600px) { div { width: 100rem; height: 50px; } }',
'@media (max-width: 600px) { div { width: 200rem; height: 50px; } }',
{ processor, unitList: ['rem'], mediaQuery: true }
);
});
// Test unitList with non-array value (should fallback to default behavior)
it('should handle non-array unitList', async () => {
const processor = (value, unit) => {
return { value: value * 2, unit: unit };
};
await testProcess(
'div { width: 100px; height: 50rem; }',
'div { width: 200px; height: 100rem; }',
{ processor, unitList: 'not-an-array' }
);
});
});