prettier/tests/stylefmt/nested-mixin/__snapshots__/jsfmt.spec.js.snap

38 lines
921 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`nested-mixin.css 1`] = `
====================================options=====================================
parsers: ["css"]
printWidth: 80
| printWidth
=====================================input======================================
@mixin test() {
$values: blue red;
@each $val in $values {
color: $val;
@for $i from 2 through 10 {
background: $i;
}
}
@for $i from 2 through 10 {
color: $i;
}
}
=====================================output=====================================
@mixin test() {
$values: blue red;
@each $val in $values {
color: $val;
@for $i from 2 through 10 {
background: $i;
}
}
@for $i from 2 through 10 {
color: $i;
}
}
================================================================================
`;