| OLD | NEW |
| 1 The test verifies autocomplete suggestions for SCSS file. | 1 The test verifies autocomplete suggestions for SCSS file. |
| 2 | 2 |
| 3 | 3 |
| 4 Running: testPropertyValueSuggestionsBefore$ | 4 Running: testPropertyValueSuggestionsBefore$ |
| 5 ========= Selection In Editor ========= | 5 ========= Selection In Editor ========= |
| 6 @mixin my-border-style($style) { | 6 @mixin my-border-style($style) { |
| 7 border-style: |$; | 7 border-style: |$; |
| 8 } | 8 } |
| 9 ======= Autocomplete Suggestions ======= | 9 ======= Autocomplete Suggestions ======= |
| 10 [dashed, dotted, double, groove, hidden, inherit, initial, inset, none, outset,
ridge, solid] | 10 [dashed, dotted, double, groove, hidden, inherit, initial, inset, none, outset,
ridge, solid, unset] |
| 11 | 11 |
| 12 Running: testPropertyValueSuggestionsAfter$ | 12 Running: testPropertyValueSuggestionsAfter$ |
| 13 ========= Selection In Editor ========= | 13 ========= Selection In Editor ========= |
| 14 @mixin my-border-style($style) { | 14 @mixin my-border-style($style) { |
| 15 border-style: $|; | 15 border-style: $|; |
| 16 } | 16 } |
| 17 ======= Autocomplete Suggestions ======= | 17 ======= Autocomplete Suggestions ======= |
| 18 [$style] | 18 [$style] |
| 19 | 19 |
| OLD | NEW |