Decrease cukes default wait time
This will not fix cukes, but at least travis is going to throw failures output instead of timing out
This commit is contained in:
parent
7e4028626f
commit
0de6512789
1 changed files with 4 additions and 1 deletions
|
|
@ -25,7 +25,10 @@ require 'cucumber/api_steps'
|
|||
Capybara.default_selector = :css
|
||||
|
||||
# We have a ridiculously high wait time to account for build machines of various beefiness.
|
||||
Capybara.default_wait_time = 30
|
||||
# Capybara.default_wait_time = 30
|
||||
|
||||
# While there are a lot of failures, wait less, avoiding travis timeout
|
||||
Capybara.default_wait_time = 3
|
||||
|
||||
# If you set this to false, any error raised from within your app will bubble
|
||||
# up to your step definition and out to cucumber unless you catch it somewhere
|
||||
|
|
|
|||
Loading…
Reference in a new issue