jsfmt.spec.js.snap 624 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`nested-mixin-2.css 1`] = `
  3. @mixin test() {
  4. $values: blue red;
  5. @each $val in $values {
  6. color : $val;
  7. @for $i from 2 through 10 {
  8. background: $i;
  9. }
  10. }
  11. @for $i from 2 through 10 {
  12. color: $i;
  13. }
  14. @while $k > 0 {
  15. color: $k;
  16. }
  17. }
  18. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  19. @mixin test() {
  20. $values: blue red;
  21. @each $val in $values {
  22. color: $val;
  23. @for $i from 2 through 10 {
  24. background: $i;
  25. }
  26. }
  27. @for $i from 2 through 10 {
  28. color: $i;
  29. }
  30. @while $k > 0 {
  31. color: $k;
  32. }
  33. }
  34. `;