@@ -211,38 +211,42 @@ color: red
211211 expect (
212212 compileScoped ( `.div { color: red; } .div:where(:hover) { color: blue; }` ) ,
213213 ) . toMatchInlineSnapshot ( `
214- ".div[data-v-test] { color: red;
215- }
216- .div[data-v-test]:where(:hover) { color: blue;
217- }"` )
214+ ".div[data-v-test] { color: red;
215+ }
216+ .div[data-v-test]:where(:hover) { color: blue;
217+ }"
218+ ` )
218219
219220 expect (
220221 compileScoped ( `.div { color: red; } .div:is(:hover) { color: blue; }` ) ,
221222 ) . toMatchInlineSnapshot ( `
222- ".div[data-v-test] { color: red;
223- }
224- .div[data-v-test]:is(:hover) { color: blue;
225- }"` )
223+ ".div[data-v-test] { color: red;
224+ }
225+ .div[data-v-test]:is(:hover) { color: blue;
226+ }"
227+ ` )
226228
227229 expect (
228230 compileScoped (
229231 `.div { color: red; } .div:where(.foo:hover) { color: blue; }` ,
230232 ) ,
231233 ) . toMatchInlineSnapshot ( `
232- ".div[data-v-test] { color: red;
233- }
234- .div[data-v-test]:where(.foo:hover) { color: blue;
235- }"` )
234+ ".div[data-v-test] { color: red;
235+ }
236+ .div[data-v-test]:where(.foo:hover) { color: blue;
237+ }"
238+ ` )
236239
237240 expect (
238241 compileScoped (
239242 `.div { color: red; } .div:is(.foo:hover) { color: blue; }` ,
240243 ) ,
241244 ) . toMatchInlineSnapshot ( `
242- ".div[data-v-test] { color: red;
243- }
244- .div[data-v-test]:is(.foo:hover) { color: blue;
245- }"` )
245+ ".div[data-v-test] { color: red;
246+ }
247+ .div[data-v-test]:is(.foo:hover) { color: blue;
248+ }"
249+ ` )
246250 } )
247251
248252 test ( 'media query' , ( ) => {
0 commit comments