Created
February 2, 2011 17:22
-
-
Save ThroughTheNet/808025 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adapted for Rspec2. This won't work in RSpec 1. | |
# Updated with new syntax to remove deprecation warnings | |
# Put this code in acceptance_helper.rb or better in a new file spec/acceptance/support/javascript.rb | |
RSpec.configure do |config| | |
config.before(:each) do | |
Capybara.current_driver = Capybara.javascript_driver if example.metadata[:js] | |
end | |
config.after(:each) do | |
Capybara.use_default_driver if example.metadata[:js] | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#... | |
scenario "Scenario that needs Javascript", :js => true do | |
#... | |
end | |
scenario "Scenario that doesn't need Javascript" do | |
#... | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment