Skip to content

Commit

Permalink
fix(postcss-convert-values): add test case for cssnano#958
Browse files Browse the repository at this point in the history
  • Loading branch information
SkReD committed Oct 23, 2020
1 parent 9a92f07 commit 5d98f96
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/postcss-convert-values/src/__tests__/index.js
Expand Up @@ -384,6 +384,19 @@ test(
)
);

test(
'should not try to convert keyframe names in animation (case 2)',
passthroughCSS(
`
.e4yw0Q {
animation: e4yw0Q;
}
@keyframes e4yw0Q {}
`
)
);

['stroke-dasharray', 'stroke-dashoffset', 'stroke-width'].forEach(
(property) => {
test(
Expand Down

0 comments on commit 5d98f96

Please sign in to comment.