Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
da135119
Commit
da135119
authored
Jun 17, 2015
by
Robert Speicher
Committed by
Dmitriy Zaporozhets
Jun 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move CapybaraHelpers to its own support file
In case we end up wanting to use it in Spinach as well.
parent
ef206b79
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
33 deletions
+32
-33
spec/support/capybara.rb
spec/support/capybara.rb
+0
-33
spec/support/capybara_helpers.rb
spec/support/capybara_helpers.rb
+32
-0
No files found.
spec/support/capybara.rb
View file @
da135119
...
@@ -19,36 +19,3 @@ unless ENV['CI'] || ENV['CI_SERVER']
...
@@ -19,36 +19,3 @@ unless ENV['CI'] || ENV['CI_SERVER']
# Keep only the screenshots generated from the last failing test suite
# Keep only the screenshots generated from the last failing test suite
Capybara
::
Screenshot
.
prune_strategy
=
:keep_last_run
Capybara
::
Screenshot
.
prune_strategy
=
:keep_last_run
end
end
module
CapybaraHelpers
# Execute a block a certain number of times before considering it a failure
#
# The given block is called, and if it raises a `Capybara::ExpectationNotMet`
# error, we wait `interval` seconds and then try again, until `retries` is
# met.
#
# This allows for better handling of timing-sensitive expectations in a
# sketchy CI environment, for example.
#
# interval - Delay between retries in seconds (default: 0.5)
# retries - Number of times to execute before failing (default: 5)
def
allowing_for_delay
(
interval:
0.5
,
retries:
5
)
tries
=
0
begin
yield
rescue
Capybara
::
ExpectationNotMet
=>
ex
if
tries
<=
retries
tries
+=
1
sleep
interval
retry
else
raise
ex
end
end
end
end
RSpec
.
configure
do
|
config
|
config
.
include
CapybaraHelpers
,
type: :feature
end
spec/support/capybara_helpers.rb
0 → 100644
View file @
da135119
module
CapybaraHelpers
# Execute a block a certain number of times before considering it a failure
#
# The given block is called, and if it raises a `Capybara::ExpectationNotMet`
# error, we wait `interval` seconds and then try again, until `retries` is
# met.
#
# This allows for better handling of timing-sensitive expectations in a
# sketchy CI environment, for example.
#
# interval - Delay between retries in seconds (default: 0.5)
# retries - Number of times to execute before failing (default: 5)
def
allowing_for_delay
(
interval:
0.5
,
retries:
5
)
tries
=
0
begin
yield
rescue
Capybara
::
ExpectationNotMet
=>
ex
if
tries
<=
retries
tries
+=
1
sleep
interval
retry
else
raise
ex
end
end
end
end
RSpec
.
configure
do
|
config
|
config
.
include
CapybaraHelpers
,
type: :feature
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment