@@ -335,7 +335,9 @@ test('modifiers', async () => {
335
335
test ( 'legacy target' , async ( ) => {
336
336
let config = {
337
337
plugins : [ typographyPlugin ( { target : 'legacy' } ) ] ,
338
- content : [ { raw : html `<div class= "prose prose-h1:text-center prose-headings:text-ellipsis" > </ div> ` } ] ,
338
+ content : [
339
+ { raw : html `<div class= "prose prose-h1:text-center prose-headings:text-ellipsis" > </ div> ` } ,
340
+ ] ,
339
341
theme : {
340
342
typography : {
341
343
DEFAULT : {
@@ -712,7 +714,7 @@ test('element variants', async () => {
712
714
.prose-hr\:border-t-2 : is (: where (hr): not (: where ([class ~= 'not-prose' ] * ))) {
713
715
border-top-width : 2px ;
714
716
}
715
- .prose-lead\:italic : is (: where ([class ~= " lead" ]): not (: where ([class ~= " not-prose" ] * ))) {
717
+ .prose-lead\:italic : is (: where ([class ~= ' lead' ]): not (: where ([class ~= ' not-prose' ] * ))) {
716
718
font-style : italic;
717
719
}
718
720
`
@@ -886,7 +888,7 @@ test('element variants with custom class name', async () => {
886
888
.markdown-hr\:border-t-2 : is (: where (hr): not (: where ([class ~= 'not-markdown' ] * ))) {
887
889
border-top-width : 2px ;
888
890
}
889
- .markdown-lead\:italic : is (: where ([class ~= " lead" ]): not (: where ([class ~= " not-markdown" ] * ))) {
891
+ .markdown-lead\:italic : is (: where ([class ~= ' lead' ]): not (: where ([class ~= ' not-markdown' ] * ))) {
890
892
font-style : italic;
891
893
}
892
894
`
@@ -1025,7 +1027,7 @@ it('should not break with multiple selectors with pseudo elements using variants
1025
1027
1026
1028
return run ( config ) . then ( ( result ) => {
1027
1029
expect ( result . css ) . toIncludeCss ( css `
1028
- .dark .dark\:prose : where (ol li , ul li ): not (: where ([class ~= " not-prose" ] * ))::before {
1030
+ .dark .dark\:prose : where (ol li, ul li ): not (: where ([class ~= ' not-prose' ] * ))::before {
1029
1031
color : red;
1030
1032
}
1031
1033
` )
0 commit comments