Skip to content

Instantly share code, notes, and snippets.

@mcmire
Created November 11, 2016 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcmire/e621374fbdfafb3fba0ab9e48a4aedd1 to your computer and use it in GitHub Desktop.
Save mcmire/e621374fbdfafb3fba0ab9e48a4aedd1 to your computer and use it in GitHub Desktop.
Disable transitions and animations in tests
<% if Rails.env.test? %>
<style type="text/css">
* {
transition-duration: 0s !important;
animation-duration: 0s !important;
}
</style>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment