We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5129c1 commit bb4bec6Copy full SHA for bb4bec6
test.js
@@ -194,9 +194,9 @@ const tests = [
194
{
195
should:
196
'not treat animation curve as identifier of animation name even if it separated by comma',
197
- input: '.foo { animation: 1s normal ease-out infinite, 1s normal ease-out infinite; }',
+ input: '.foo { animation: slide-right 300ms forwards ease-out, fade-in 300ms forwards ease-out; }',
198
expected:
199
- ':local(.foo) { animation: 1s normal ease-out infinite, 1s normal ease-out infinite; }'
+ ':local(.foo) { animation: :local(slide-right) 300ms forwards ease-out, :local(fade-in) 300ms forwards ease-out; }'
200
},
201
202
should: 'handle animations with custom timing functions',
0 commit comments