File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -1549,11 +1549,11 @@ describe('Parsing themes values from CSS', () => {
1549
1549
}
1550
1550
@tailwind utilities;
1551
1551
` ,
1552
- [ 'flex ' ] ,
1552
+ [ 'animate-foo ' ] ,
1553
1553
) ,
1554
1554
) . toMatchInlineSnapshot ( `
1555
- ".flex {
1556
- display: flex ;
1555
+ ".animate-foo {
1556
+ animation: var(--animate-foo) ;
1557
1557
}"
1558
1558
` )
1559
1559
} )
@@ -1582,13 +1582,17 @@ describe('Parsing themes values from CSS', () => {
1582
1582
1583
1583
@tailwind utilities;
1584
1584
` ,
1585
- [ 'bg-pink' ] ,
1585
+ [ 'bg-pink' , 'animate-foo' ] ,
1586
1586
) ,
1587
1587
) . toMatchInlineSnapshot ( `
1588
1588
":root, :host {
1589
1589
--color-pink: pink;
1590
1590
}
1591
1591
1592
+ .animate-foo {
1593
+ animation: var(--animate-foo);
1594
+ }
1595
+
1592
1596
.bg-pink {
1593
1597
background-color: var(--color-pink);
1594
1598
}"
You can’t perform that action at this time.
0 commit comments