Skip to content
Snippets Groups Projects
Commit 66394bd1 authored by Daniel Davison's avatar Daniel Davison
Browse files

Merge branch 'qa/refactor-e2e-test' into 'master'

Refactor collapse issue comments end-to-end test

See merge request gitlab-org/gitlab-ce!30902
parents 99a2528b d375e834
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3,31 +3,32 @@
module QA
context 'Plan' do
describe 'collapse comments in issue discussions' do
let(:issue_title) { 'issue title' }
let(:my_first_reply) { 'My first reply' }
 
it 'user collapses reply for comments in an issue' do
before do
Runtime::Browser.visit(:gitlab, Page::Main::Login)
Page::Main::Login.perform(&:sign_in_using_credentials)
 
issue = Resource::Issue.fabricate_via_api! do |issue|
issue.title = issue_title
issue.title = 'issue title'
end
 
issue.visit!
 
expect(page).to have_content(issue_title)
Page::Project::Issue::Show.perform do |show_page|
my_first_discussion = "My first discussion"
my_first_reply = "My First Reply"
one_reply = "1 reply"
my_first_discussion = 'My first discussion'
 
show_page.select_all_activities_filter
show_page.start_discussion(my_first_discussion)
expect(show_page).to have_content(my_first_discussion)
page.assert_text(my_first_discussion)
show_page.reply_to_discussion(my_first_reply)
expect(show_page).to have_content(my_first_reply)
page.assert_text(my_first_reply)
end
end
it 'user collapses and expands reply for comments in an issue' do
Page::Project::Issue::Show.perform do |show_page|
one_reply = "1 reply"
 
show_page.collapse_replies
expect(show_page).to have_content(one_reply)
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