Open julianrubisch opened 7 hours ago
I just added capybara-thruster to my application_system_test_case.rb:
application_system_test_case.rb
Capybara.server = :thruster, {puma_options: {Silent: true}}
That it works.
Got
LoadError: cannot load such file -- rack/handler (LoadError)
I googled the error and it seemed to be related to Rack 3 (?) but even manually adding rackup didn't help. The require 'rack/handler' seems to have been added here? https://github.com/evilmartians/capybara-thruster/commit/c65399c7e49396d7a49c7f031664eb4a99b26a53
rackup
require 'rack/handler'
Ruby Version: 3.3.5
Rack: 3.0.11
Capybara Thruster Version: 0.1.1
Can confirm that downgrading to 0.1.0 seems to fix the issue
What did you do?
I just added capybara-thruster to my
application_system_test_case.rb
:What did you expect to happen?
That it works.
What actually happened?
Got
I googled the error and it seemed to be related to Rack 3 (?) but even manually adding
rackup
didn't help. Therequire 'rack/handler'
seems to have been added here? https://github.com/evilmartians/capybara-thruster/commit/c65399c7e49396d7a49c7f031664eb4a99b26a53Environment
Ruby Version: 3.3.5
Rack: 3.0.11
Capybara Thruster Version: 0.1.1