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
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -65,6 +65,21 @@ describe 'Issue Boards new issue', feature: true, js: true do
expect(page).to have_content('1')
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
 
context 'unauthorized user' do
Loading
Loading
Loading
Loading
@@ -294,4 +294,18 @@ describe 'Issue Boards', feature: true, js: true do
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
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