BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
2f34ef34
Commit
2f34ef34
authored
Feb 12, 2018
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make wait return the value we yielded when
it's not nil nor false.
parent
338bb2ac
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
base.rb
qa/qa/page/base.rb
+2
-1
index.rb
qa/qa/page/project/pipeline/index.rb
+2
-3
No files found.
qa/qa/page/base.rb
View file @
2f34ef34
...
@@ -17,7 +17,8 @@ module QA
...
@@ -17,7 +17,8 @@ module QA
start
=
Time
.
now
start
=
Time
.
now
while
Time
.
now
-
start
<
max
while
Time
.
now
-
start
<
max
return
true
if
yield
result
=
yield
return
result
if
result
sleep
(
time
)
sleep
(
time
)
...
...
qa/qa/page/project/pipeline/index.rb
View file @
2f34ef34
...
@@ -7,10 +7,9 @@ module QA::Page
...
@@ -7,10 +7,9 @@ module QA::Page
def
go_to_latest_pipeline
def
go_to_latest_pipeline
css
=
'.js-pipeline-url-link'
css
=
'.js-pipeline-url-link'
link
=
nil
wait
(
reload:
false
)
do
link
=
wait
(
reload:
false
)
do
link
=
first
(
css
)
first
(
css
)
end
end
link
.
click
link
.
click
...
...
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