Open
Description
# Gemfile
gem 'rails', '~> 6.0.2'
group :development, :test do
gem 'selenium-webdriver'
gem 'teaspoon', : 'jejacks0n/teaspoon'
gem 'teaspoon-jasmine', : 'jejacks0n/teaspoon'
end
I am attempting to run teaspoon --driver=selenium --server-port=31337 --format=documentation spec/javascripts/vendoring/integration_form_spec.js
and for some reason the Rails.env
defaults to "development." This causes a bit of a problem with other gems we use, so I throw a RAILS_ENV=test on there, and the environment is set correctly, but I am still getting timeouts.
11:23 <kuzmik@ilus4:registry(kuzmik/REGISTRY-672/part-2 *) $ > RAILS_ENV=test rake teaspoon
Starting the Teaspoon server...
Teaspoon running default suite at http://127.0.0.1:56930/teaspoon/default
rake aborted!
Selenium::WebDriver::Error::TimeoutError: Timed out
Under rails 5.2 the exact same code worked fine, so I am kind of at a loss.
Anyone have any ideas? I saw there was another issue about rails 6, but I am not running into that issue or using any of those other libraries, just teaspoon and jasmine (and selenium I guess).