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

32 lines
482 B
Plaintext
Raw Normal View History

2017-05-27 23:20:32 +03:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`combinator.css 1`] = `
-Option/root .public/section ~ .public/section:before {
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Option/root .public/section ~ .public/section:before {
}
`;
exports[`leading.css 1`] = `
a {
> * {
}
&, > * {
}
+ * {
}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
a {
> * {
}
&, > * {
}
+ * {
}
}
`;