You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Integration and Controller helpers are configured in rails_helper
Error on running on controller tests
RuntimeError:
Could not find a valid mapping for #<User id: ...
Solution that worked for me
Add to spec_helper
# TODO Remove when Devise fixes https://github.com/heartcombo/devise/issues/5705
config.before(:each, type: :controller) do
Rails.application.reload_routes_unless_loaded
end
end