Skip to content
This repository was archived by the owner on Sep 29, 2024. It is now read-only.

Commit b9f8293

Browse files
committed
Fix the tests
1 parent 526e304 commit b9f8293

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ language: node_js
33
node_js:
44
- stable
55
- "0.12"
6+
- "4"
7+
- "5"
8+
- "6"

test/fixtures/basic.expect.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@
8989
color: green;
9090
}
9191

92+
.phone img {
93+
display: block;
94+
}
95+
9296
.phone_title {
9397
width: 500px;
9498
}
@@ -98,19 +102,15 @@
98102
}
99103

100104
body.is_dark .phone_title {
101-
color: white
102-
}
103-
104-
.phone img {
105-
display: block;
105+
color: white;
106106
}
107107

108108
@media (max-width: 500px) {
109109

110110
.phone_title {
111111
width: auto;
112112
}
113-
}
113+
}
114114

115115
.bar {
116116
background: pink;

test/fixtures/basic.var.expect.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@
8989
color: blue;
9090
}
9191

92+
.phone img {
93+
display: block;
94+
}
95+
9296
.phone_title {
9397
width: 500px;
9498
}
@@ -98,19 +102,15 @@
98102
}
99103

100104
body.is_dark .phone_title {
101-
color: white
102-
}
103-
104-
.phone img {
105-
display: block;
105+
color: white;
106106
}
107107

108108
@media (max-width: 500px) {
109109

110110
.phone_title {
111111
width: auto;
112112
}
113-
}
113+
}
114114

115115
.bar {
116116
background: pink;

0 commit comments

Comments
 (0)