Skip to content
Snippets Groups Projects
Commit b602023e authored by Phil Hughes's avatar Phil Hughes
Browse files

Added tests for showing sidebar when new issue is saved

parent e4571614
Branches
Tags
1 merge request!6690Issue board sidebar
Pipeline #
Loading
@@ -65,6 +65,21 @@ describe 'Issue Boards new issue', feature: true, js: true do
Loading
@@ -65,6 +65,21 @@ describe 'Issue Boards new issue', feature: true, js: true do
expect(page).to have_content('1') expect(page).to have_content('1')
end end
end end
it 'shows sidebar when creating new issue' do
page.within(first('.board')) do
find('.board-issue-count-holder .btn').click
end
page.within(first('.board-new-issue-form')) do
find('.form-control').set('bug')
click_button 'Submit issue'
end
wait_for_vue_resource
expect(page).to have_selector('.issue-boards-sidebar')
end
end end
   
context 'unauthorized user' do context 'unauthorized user' do
Loading
Loading
Loading
@@ -294,4 +294,18 @@ describe 'Issue Boards', feature: true, js: true do
Loading
@@ -294,4 +294,18 @@ describe 'Issue Boards', feature: true, js: true do
end end
end end
end end
context 'subscription' do
it 'changes issue subscription' do
page.within(first('.board')) do
first('.card').click
end
page.within('.subscription') do
click_button 'Subscribe'
expect(page).to have_content("You're receiving notifications because you're subscribed to this thread.")
end
end
end
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment