Skip to content

Instantly share code, notes, and snippets.

@mhaylock
Forked from keithtom/no_animations.rb
Last active May 2, 2017 17:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhaylock/6068ede8fb7616c7292301694fae5edb to your computer and use it in GitHub Desktop.
Save mhaylock/6068ede8fb7616c7292301694fae5edb to your computer and use it in GitHub Desktop.
Rack Middleware to disable Disable CSS3/jQuery Animations for Capybara
module Rack
# disable CSS3 and jQuery animations in test mode for speed, consistency and avoiding timing issues.
# Usage for Rails:
# in config/environments/test.rb
# config.middleware.use Rack::NoAnimations
class NoAnimations
def initialize(app, options = {})
@app = app
end
def call(env)
@status, @headers, @body = @app.call(env)
return [@status, @headers, @body] unless html?
response = Rack::Response.new([], @status, @headers)
@body.each { |fragment| response.write inject(fragment) }
@body.close if @body.respond_to?(:close)
response.finish
end
private
def html?
@headers["Content-Type"] =~ /html/
end
def inject(fragment)
disable_animations = <<~HTML
<script type="text/javascript">
(typeof jQuery !== 'undefined') && (jQuery.fx.off = true);
</script>
<style>
* {
-o-transition: none !important;
-moz-transition: none !important;
-ms-transition: none !important;
-webkit-transition: none !important;
transition: none !important;
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
}
</style>
HTML
fragment.gsub(%r{</head>}, disable_animations + "</head>")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment