From ba3e03052f32b2cf68c8aaf9d8e6a511ab50cef4 Mon Sep 17 00:00:00 2001 From: Grzegorz Ziolkowski Date: Fri, 8 Feb 2019 17:09:25 +0100 Subject: [PATCH] Disable animations completely in e2e tests --- packages/e2e-tests/plugins/disable-animations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/e2e-tests/plugins/disable-animations.php b/packages/e2e-tests/plugins/disable-animations.php index f69e743d430d8..f13c2c9003a2d 100644 --- a/packages/e2e-tests/plugins/disable-animations.php +++ b/packages/e2e-tests/plugins/disable-animations.php @@ -11,7 +11,7 @@ * Enqueue CSS stylesheet disabling animations. */ function enqueue_disable_animations_stylesheet() { - $custom_css = '* { animation-duration: 1ms !important; }'; + $custom_css = '* { animation-duration: 0ms !important; }'; wp_add_inline_style( 'wp-components', $custom_css ); }