Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在哪里设置或配置以触发 cucumber/selenium 测试以运行瘦服务器而不是默认的 Webrick 服务器?
要显式设置 Thin,请在 features/support 目录中创建一个文件,其中包含以下内容:
Capybara.server do |app, port| require 'rack/handler/thin' Rack::Handler::Thin.run(app, :Port => port) end