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:
authorDouwe Maan <douwe@gitlab.com>2016-01-20 18:06:49 +0300
committerDouwe Maan <douwe@gitlab.com>2016-01-20 18:06:49 +0300
commitb4faa59728c07893fe0f6d83648bf4d76e36320a (patch)
tree91ddc330527189518eaefe796d65d11c30266ef0 /features/steps/shared
parentf8f96994f7aa53b1588762266bf60418960cf30d (diff)
parentc26816f7a732b339b14d7d6d928f5a86f490d77c (diff)
Merge branch 'issue_3749' into 'master'
Update Issues/MRs updated_at field when notes are generated Closes #3749 and #9130 See merge request !2493
Diffstat (limited to 'features/steps/shared')
-rw-r--r--features/steps/shared/note.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/features/steps/shared/note.rb b/features/steps/shared/note.rb
index 444d6726f99..eb6df61b8e6 100644
--- a/features/steps/shared/note.rb
+++ b/features/steps/shared/note.rb
@@ -144,4 +144,11 @@ module SharedNote
expect(page).to have_content("+1 Awesome!")
end
end
+
+ step 'I sort the list by "Last updated"' do
+ find('button.dropdown-toggle.btn').click
+ page.within('ul.dropdown-menu.dropdown-menu-align-right li') do
+ click_link "Last updated"
+ end
+ end
end