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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
c4163a51
Commit
c4163a51
authored
Jun 08, 2020
by
Sanad Liaquat (Personal)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix flaky project import spec
parent
7c359b2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
qa/qa/ee/page/project/show.rb
qa/qa/ee/page/project/show.rb
+9
-1
No files found.
qa/qa/ee/page/project/show.rb
View file @
c4163a51
...
...
@@ -25,9 +25,17 @@ module QA
wait_until
(
max_duration:
max_wait
)
{
yield
}
end
def
wait_for_import_start
wait_until
(
sleep_interval:
1
)
do
has_text?
(
'Import in progress'
)
end
end
def
wait_for_import_success
wait_for_import_start
wait_until
(
max_duration:
120
,
sleep_interval:
1
)
do
has_
text?
(
'The project was successfully imported.
'
)
has_
no_text?
(
'Import in progress
'
)
end
end
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