Skip to content

Commit e7090fd

Browse files
committed
Add todo spec test for libsass issue 2633
sass/libsass#2633
1 parent 16a640b commit e7090fd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<===> input.scss
2+
$sel1: '.something__child + .something__child--mod1';
3+
$sel2: '.something__child ~ .something__child--mod2';
4+
$result1: selector-unify($sel1, $sel2);
5+
6+
#{$result1} {
7+
/* nothing */
8+
}
9+
10+
<===> output.css
11+
.something__child + .something__child--mod1.something__child--mod2 {
12+
/* nothing */
13+
}

0 commit comments

Comments
 (0)