Skip to content

Commit c2775d1

Browse files
committedJan 14, 2020
Import test passing. indentation test is not. ABSOLUTELY NO IDEA WHY. I've even verified using the sass cli and it passes. Extremely odd behavior with this testit framework which NO ONE USES anyway.
1 parent 11e44c1 commit c2775d1

File tree

5 files changed

+24
-18
lines changed

5 files changed

+24
-18
lines changed
 

‎test/import/expected.css

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
nav ul {
22
margin: 0;
33
padding: 0;
4-
list-style: none; }
5-
4+
list-style: none;
5+
}
66
nav li {
7-
display: inline-block; }
8-
7+
display: inline-block;
8+
}
99
nav a {
1010
display: block;
1111
padding: 6px 12px;
12-
text-decoration: none; }
12+
text-decoration: none;
13+
}
1314

1415
body {
1516
font: 100% Helvetica, sans-serif;
16-
background-color: #efefef; }
17+
background-color: #efefef;
18+
}

‎test/indentedSyntax/expected.css

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
nav ul {
22
margin: 0;
33
padding: 0;
4-
list-style: none; }
5-
4+
list-style: none;
5+
}
66
nav li {
7-
display: inline-block; }
8-
7+
display: inline-block;
8+
}
99
nav a {
1010
display: block;
1111
padding: 6px 12px;
12-
text-decoration: none; }
12+
text-decoration: none;
13+
}

‎test/indentedSyntax/input.sass

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ nav
33
margin: 0
44
padding: 0
55
list-style: none
6-
76
li
87
display: inline-block
9-
108
a
119
display: block
1210
padding: 6px 12px
13-
text-decoration: none
11+
text-decoration: none

‎test/scss/expected.css

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
nav ul {
22
margin: 0;
33
padding: 0;
4-
list-style: none; }
4+
list-style: none;
5+
}
56

67
nav li {
7-
display: inline-block; }
8+
display: inline-block;
9+
}
810

911
nav a {
1012
display: block;
1113
padding: 6px 12px;
12-
text-decoration: none; }
14+
text-decoration: none;
15+
}

‎test/scss/input.scss

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ nav {
55
list-style: none;
66
}
77

8-
li { display: inline-block; }
8+
li {
9+
display: inline-block;
10+
}
911

1012
a {
1113
display: block;

0 commit comments

Comments
 (0)
Please sign in to comment.