1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`"execute" option should reuse PostCSS AST with JS styles: css 1`] = `
"a {
color: green
}"
`;
exports[`"execute" option should reuse PostCSS AST with JS styles: errors 1`] = `[]`;
exports[`"execute" option should reuse PostCSS AST with JS styles: warnings 1`] = `[]`;
exports[`"execute" option should work with "Boolean" value: css 1`] = `
"a {
color: green
}"
`;
exports[`"execute" option should work with "Boolean" value: errors 1`] = `[]`;
exports[`"execute" option should work with "Boolean" value: warnings 1`] = `[]`;
exports[`"execute" option should work with "postcss-js" parser: css 1`] = `
"a {
color: yellow
}"
`;
exports[`"execute" option should work with "postcss-js" parser: errors 1`] = `[]`;
exports[`"execute" option should work with "postcss-js" parser: warnings 1`] = `[]`;
|