Skip to content
Snippets Groups Projects
Commit df8f6636 authored by Sanad Liaquat's avatar Sanad Liaquat
Browse files

Merge branch 'qa-issues-filter-history-only' into 'master'

Fix for the filter spec failure

Closes gitlab-org/quality/nightly#34 and gitlab-org/quality/nightly#30

See merge request gitlab-org/gitlab-ce!22862
parents 8883cfca fedc6de3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -36,6 +36,11 @@ module QA
end
 
def select_comments_only_filter
click_element :discussion_filter
all_elements(:filter_options)[1].click
end
def select_history_only_filter
click_element :discussion_filter
all_elements(:filter_options).last.click
end
Loading
Loading
Loading
Loading
@@ -31,6 +31,7 @@ module QA
create_issue
 
Page::Project::Issue::Show.perform do |show|
show.select_all_activities_filter
show.comment('See attached banana for scale', attachment: file_to_attach)
 
show.refresh
Loading
Loading
Loading
Loading
@@ -27,6 +27,11 @@ module QA
 
expect(show_page).to have_content("made the issue confidential")
expect(show_page).to have_content("My own comment")
show_page.select_history_only_filter
expect(show_page).to have_content("made the issue confidential")
expect(show_page).not_to have_content("My own comment")
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment