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.
デフォルトのWebrickサーバーの代わりにシンサーバーを実行するためにcucumber/seleniumテストを起動するには、どこでセットアップまたは構成する必要がありますか?
Thin を明示的にセットアップするには、features/support ディレクトリ内に次のファイルを作成します。
Capybara.server do |app, port| require 'rack/handler/thin' Rack::Handler::Thin.run(app, :Port => port) end