prettier/tests/css_combinator/__snapshots__/jsfmt.spec.js.snap

57 lines
637 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`combinator.css 1`] = `
-Option/root .public/section ~ .public/section:before {
}
.x .y {}
.x > .y {}
.x ~ .y {}
.x + .y {}
.x.y {}
.x .y {}
.x
.y {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Option/root .public/section ~ .public/section:before {
}
.x .y {
}
.x > .y {
}
.x ~ .y {
}
.x + .y {
}
.x.y {
}
.x .y {
}
.x .y {
}
`;
exports[`leading.css 1`] = `
a {
> * {
}
&, > * {
}
+ * {
}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
a {
> * {
}
&,
> * {
}
+ * {
}
}
`;