prettier/tests/stylefmt/shorthand-with-sass-variables/__snapshots__/jsfmt.spec.js.snap

19 lines
629 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`shorthand-with-sass-variables.css 1`] = `
====================================options=====================================
parsers: ["css"]
printWidth: 80
| printWidth
=====================================input======================================
.class{border:1px solid $color;
}
=====================================output=====================================
.class {
border: 1px solid $color;
}
================================================================================
`;