|
| 1 | +// Jest Snapshot v1, https://goo.gl/fbAQLP |
| 2 | + |
| 3 | +exports[`empty-props.less format 1`] = ` |
| 4 | +====================================options===================================== |
| 5 | +parsers: ["less"] |
| 6 | +printWidth: 80 |
| 7 | + | printWidth |
| 8 | +=====================================input====================================== |
| 9 | +:root { |
| 10 | + --empty:; |
| 11 | + --one-space: ; |
| 12 | + --two-space: ; |
| 13 | +--many-space: ; |
| 14 | +} |
| 15 | +
|
| 16 | +=====================================output===================================== |
| 17 | +:root { |
| 18 | + --empty:; |
| 19 | + --one-space: ; |
| 20 | + --two-space: ; |
| 21 | + --many-space: ; |
| 22 | +} |
| 23 | +
|
| 24 | +================================================================================ |
| 25 | +`; |
| 26 | + |
| 27 | +exports[`test.less format 1`] = ` |
| 28 | +====================================options===================================== |
| 29 | +parsers: ["less"] |
| 30 | +printWidth: 80 |
| 31 | + | printWidth |
| 32 | +=====================================input====================================== |
| 33 | +/* |
| 34 | +This test is copied from \`postcss@8\` release note |
| 35 | +
|
| 36 | +https://github.com/postcss/postcss/releases/tag/8.0.0 |
| 37 | +*/ |
| 38 | +
|
| 39 | +:root { |
| 40 | + --empty: ; |
| 41 | + --JSON: [1, "2", {"three": {"a":1}}, [4]]; |
| 42 | + --javascript: function(rule) { console.log(rule) }; |
| 43 | +} |
| 44 | +
|
| 45 | +@supports (--element(".minwidth", { "minWidth": 300 })) { |
| 46 | + [--self] { |
| 47 | + background: greenyellow; |
| 48 | + } |
| 49 | +} |
| 50 | +
|
| 51 | +=====================================output===================================== |
| 52 | +/* |
| 53 | +This test is copied from \`postcss@8\` release note |
| 54 | +
|
| 55 | +https://github.com/postcss/postcss/releases/tag/8.0.0 |
| 56 | +*/ |
| 57 | +
|
| 58 | +:root { |
| 59 | + --empty: ; |
| 60 | + --JSON: [1, "2", {"three": {"a": 1}}, [4]]; |
| 61 | + --javascript: function(rule) {console.log(rule)}; |
| 62 | +} |
| 63 | +
|
| 64 | +@supports (--element(".minwidth", {"minWidth": 300})) { |
| 65 | + [--self] { |
| 66 | + background: greenyellow; |
| 67 | + } |
| 68 | +} |
| 69 | +
|
| 70 | +================================================================================ |
| 71 | +`; |
0 commit comments