Skip to content

Commit 2355634

Browse files
authored
increase test coverage (#1457)
1 parent c5b0f3c commit 2355634

File tree

5 files changed

+24
-0
lines changed

5 files changed

+24
-0
lines changed

plugins/postcss-text-decoration-shorthand/test/basic.autoprefixer.expect.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,11 @@
161161
text-decoration: green wavy overline calc(2px * 4);
162162
}
163163

164+
.none {
165+
-webkit-text-decoration: none;
166+
text-decoration: none;
167+
}
168+
164169
.ignored--a {
165170
-webkit-text-decoration: green wavy overline calc(2px * 4) bogus;
166171
text-decoration: green wavy overline calc(2px * 4) bogus;

plugins/postcss-text-decoration-shorthand/test/basic.autoprefixer.preserve-false.expect.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,11 @@
128128
text-decoration-thickness: calc(2px * 4);
129129
}
130130

131+
.none {
132+
-webkit-text-decoration: none;
133+
text-decoration: none;
134+
}
135+
131136
.ignored--a {
132137
-webkit-text-decoration: green wavy overline calc(2px * 4) bogus;
133138
text-decoration: green wavy overline calc(2px * 4) bogus;

plugins/postcss-text-decoration-shorthand/test/basic.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@
7878
text-decoration: green wavy overline calc(2px * 4);
7979
}
8080

81+
.none {
82+
text-decoration: none;
83+
}
84+
8185
.ignored--a {
8286
text-decoration: green wavy overline calc(2px * 4) bogus;
8387
}

plugins/postcss-text-decoration-shorthand/test/basic.expect.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,11 @@
128128
text-decoration: green wavy overline calc(2px * 4);
129129
}
130130

131+
.none {
132+
-webkit-text-decoration: none;
133+
text-decoration: none;
134+
}
135+
131136
.ignored--a {
132137
text-decoration: green wavy overline calc(2px * 4) bogus;
133138
}

plugins/postcss-text-decoration-shorthand/test/basic.preserve-false.expect.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@
113113
text-decoration-thickness: calc(2px * 4);
114114
}
115115

116+
.none {
117+
-webkit-text-decoration: none;
118+
text-decoration: none;
119+
}
120+
116121
.ignored--a {
117122
text-decoration: green wavy overline calc(2px * 4) bogus;
118123
}

0 commit comments

Comments
 (0)