1234567891011121314151617181920212223242526272829303132333435363738 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`nested-mixin-2.css 1`] = `
- @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;
- }
- }
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- @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;
- }
- }
- `;
|