bintz-integration_testing_s.../skel/root/features/support/drivers.rb

12 lines
309 B
Ruby
Raw Normal View History

2013-01-26 00:01:49 +00:00
# capybara drivers for fast testing
#
# this one runs your entire test suite
require 'capybara/poltergeist'
# this one runs while you continuously test via guard
require 'persistent_selenium/driver'
# you can override the driver with the DRIVER environment variable
ENV['DRIVER'] ||= 'persistent_selenium'