Skip to content

Commit

Permalink
test(compiler-sass): fixed fixtures test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcaufy committed Jul 3, 2020
1 parent 56aa05e commit 94e3ee9
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 14 deletions.
3 changes: 2 additions & 1 deletion packages/compiler-sass/test/fixtures/css/alias.scss.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
body {
color: #ff0101; }
color: #ff0101;
}
14 changes: 8 additions & 6 deletions packages/compiler-sass/test/fixtures/css/basic.sass.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
body {
font: 100% Helvetica, sans-serif;
color: #333; }
color: #333;
}

nav ul {
margin: 0;
padding: 0;
list-style: none; }

list-style: none;
}
nav li {
display: inline-block; }

display: inline-block;
}
nav a {
display: block;
padding: 6px 12px;
text-decoration: none; }
text-decoration: none;
}
14 changes: 8 additions & 6 deletions packages/compiler-sass/test/fixtures/css/basic.scss.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
body {
font: 100% Helvetica, sans-serif;
color: #333; }
color: #333;
}

nav ul {
margin: 0;
padding: 0;
list-style: none; }

list-style: none;
}
nav li {
display: inline-block; }

display: inline-block;
}
nav a {
display: block;
padding: 6px 12px;
text-decoration: none; }
text-decoration: none;
}
3 changes: 2 additions & 1 deletion packages/compiler-sass/test/fixtures/css/import.scss.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
body {
color: #ff0101; }
color: #ff0101;
}
4 changes: 4 additions & 0 deletions packages/compiler-sass/test/fixtures/sass/import.tmp.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@import './vars/colors.scss';

body
color: $red;

0 comments on commit 94e3ee9

Please sign in to comment.