我不能正確理解放置此方法調用的位置。我有這個test_helper.rb
文件NameError:未初始化的常量Capybara :: Webkit.configure
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
require 'minitest/rails/capybara'
require 'capybara'
require 'capybara/rails'
require 'capybara/webkit'
Dir[Rails.root.join('test/support/**/*.rb')].each { |f| require f }
Capybara::Webkit.configure do |config|
config.allow_unknown_urls
end
而且我得到這個錯誤,當我運行rake test
NoMethodError:未定義的方法configure' for Capybara::Webkit:Module /Users/sameer/code/rails/door_app/test/test_helper.rb:XX:in
'
好像我在做什麼自述在水豚描述-webkit Github頁面。
我需要一個'捆綁update' – juliangonzalez