Don't use CSS animations when testing.

Just like jQuery animations, they can make tests fail when using
Capybara.
This commit is contained in:
Javier Martín
2018-06-24 02:51:52 +02:00
parent 9198b1af03
commit a972e7b978

View File

@@ -1 +1,8 @@
<%= javascript_tag "jQuery.fx.off = true" %>
<style>
* {
transition: none !important;
animation-duration: 0s !important;
animation-delay: 0s !important;
}
</style>