Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2017-06-15 21:14:03 +0300
committerRobert Speicher <robert@gitlab.com>2017-06-15 21:14:03 +0300
commitde4d846dcc917b2b740fa5587dfbb0c2dd9b8506 (patch)
treed5af73ee532992de790cbd63e41529bd292b6a85
parent75d425e4fcfb884960e179d5268a14829e183a70 (diff)
parent428ffaad6a5556a932af6829e2e497176eef2606 (diff)
Merge branch '33614-try-to-fix-transient-failure' into 'master'
Try to use the same pattern as other spec in this file Closes #33614 See merge request !12192
-rw-r--r--spec/features/boards/boards_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/boards/boards_spec.rb b/spec/features/boards/boards_spec.rb
index c80453b8227..968cc9d9c80 100644
--- a/spec/features/boards/boards_spec.rb
+++ b/spec/features/boards/boards_spec.rb
@@ -249,11 +249,11 @@ describe 'Issue Boards', feature: true, js: true do
it 'issue moves from closed' do
drag(list_from_index: 3, list_to_index: 2)
- expect(find('.board:nth-child(3)')).to have_content(issue8.title)
-
wait_for_board_cards(2, 8)
wait_for_board_cards(3, 3)
wait_for_board_cards(4, 0)
+
+ expect(find('.board:nth-child(3)')).to have_content(issue8.title)
end
context 'issue card' do