We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e4a66 commit 7152277Copy full SHA for 7152277
test/test.js
@@ -12,6 +12,12 @@ test('it change circular reference', t => {
12
t.is(processing(value), expected);
13
});
14
15
+test('it should not throw error', t => {
16
+ const expected = ':root{ --from: 1; /* comment */ }';
17
+ const value = ':root{ --from: 1; /* comment */ }';
18
+ t.is(processing(value), expected);
19
+});
20
+
21
test('it change first properties for @for', t => {
22
const expected = ':root{ --from: 1; } @for $i from 1 to 2';
23
const value = ':root{ --from: 1; } @for $i from var(--from) to 2';
0 commit comments