Skip to content

Commit

Permalink
fix(issue:3767) add more variable tests
Browse files Browse the repository at this point in the history
* Add more variable tests for issue #3767.
  • Loading branch information
puckowski committed Dec 15, 2024
1 parent 70d0936 commit fcae98c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/test-data/css/_main/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,6 @@
m-5: a "a.ab" c c 'a.bc' abc d;
m-6: a.hello;
m-7: 'a.b' "abc" abc a.b.c 'a.b.c';
m-8: hello;
m-9: 'a.hello';
}
4 changes: 4 additions & 0 deletions packages/test-data/less/_main/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@
@mixedThree: a "a.ab" c c 'a.bc' abc d;
@mixedFour: a.hello;
@mixedFive: 'a.b' "abc" abc a.b.c 'a.b.c';
@mixedSix: hello;
@mixedSeven: 'a.hello';

.mixed {
m-1: @doubleQuoted;
Expand All @@ -160,4 +162,6 @@
m-5: @mixedThree;
m-6: @mixedFour;
m-7: @mixedFive;
m-8: @mixedSix;
m-9: @mixedSeven;
}

0 comments on commit fcae98c

Please sign in to comment.