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

45 lines
993 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`nested-mixin-2.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;
}
@while $k > 0 {
color: $k;
}
}
=====================================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;
}
@while $k > 0 {
color: $k;
}
}
================================================================================
`;